| name | description |
| dotNetToCFType | Explicitly converts a value returned by a .NET method to the corresponding ColdFusion data type. |
| duplicate | Returns a clone, also known as a deep copy, of a variable. There is no reference to the original variable. |
| isStruct | Determines whether a variable is a structure. |
| structAppend | Appends one structure to another. |
| structClear | Removes all data from a structure. |
| structCopy | Copies a structure. Copies top-level keys, values, and arrays in the structure by value; copies nested structures by reference. |
| structCount | Counts the keys in a structure. |
| structDelete | Removes an element from a structure. |
| structFind | Determines the value associated with a key in a structure. |
| structFindKey | Searches recursively through a substructure of nested arrays, structures, and other elements, for structures whose values match the search key in the value parameter. |
| structFindValue | Searches recursively through a substructure of nested arrays, structures, and other elements for structures with values that match the search key in the valueparameter. |
| structGet | Gets a structure(s) from a specified path. |
| structInsert | Inserts a key-value pair into a structure. |
| structIsEmpty | Determines whether a structure contains data. |
| structKeyArray | Finds the keys in a ColdFusion structure. |
| structKeyExists | Determines whether a specific key is present in a structure. |
| structKeyList | Extracts keys from a ColdFusion structure. |
| structNew | Creates a structure. |
| structSort | Returns a sorted array of the top level keys in a structure. Sorts using alphabetic or numeric sorting, and can sort based on the values of any structure element. |
| structUpdate | Updates a key with a value. |