Structure Functions

namedescription
dotNetToCFTypeExplicitly converts a value returned by a .NET method to the corresponding ColdFusion data type.
duplicateReturns a clone, also known as a deep copy, of a variable. There is no reference to the original variable.
isStructDetermines whether a variable is a structure.
structAppendAppends one structure to another.
structClearRemoves all data from a structure.
structCopyCopies a structure. Copies top-level keys, values, and arrays in the structure by value; copies nested structures by reference.
structCountCounts the keys in a structure.
structDeleteRemoves an element from a structure.
structFindDetermines the value associated with a key in a structure.
structFindKeySearches recursively through a substructure of nested arrays, structures, and other elements, for structures whose values match the search key in the value parameter.
structFindValueSearches recursively through a substructure of nested arrays, structures, and other elements for structures with values that match the search key in the valueparameter.
structGetGets a structure(s) from a specified path.
structInsertInserts a key-value pair into a structure.
structIsEmptyDetermines whether a structure contains data.
structKeyArrayFinds the keys in a ColdFusion structure.
structKeyExistsDetermines whether a specific key is present in a structure.
structKeyListExtracts keys from a ColdFusion structure.
structNewCreates a structure.
structSortReturns 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.
structUpdateUpdates a key with a value.