Contents

StructNew

Description

Creates a structure. If you pass in a parameter you can create a normal, weak or linked typed of structure.

You can create a specific structure by passing a variable into this function for example:

Category

Other

Implemented

Usage Syntax

StructNew([type])

Return Information

Return Type Return Description
struct

Arguments

Name Type Required Position Default Description
type String No 1 the type the new struct (normal,weak,linked)

Example Usage

<cfset myStructure = StructNew()>
<cfset myLinkedStructure = StructNew("linked")>
<cfset myWeakStructure = StrucNew("weak")>