All Downloads are FREE. Search and download functionalities are using the official Maven repository.

.hibernate-tools.5.4.19.Final.source-code.debug.ftl Maven / Gradle / Ivy

There is a newer version: 5.6.15.Final
Show newest version
<#macro dump var>
   <#if var?is_hash>
   {
     <#foreach key in var?keys>
        ${key}:<  dump var[key]/>,
     
   }
   <#elseif var?is_sequence>
   [
     <#foreach elem in sequence>
       <  dump elem/>,
     
   ]
   <#else>
     ${var}
   


<@dump .vars/>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy