Legal Notice, Privacy Policy

Impressum, Datenschutzerklärung

Cerberus X Documentation

Class ArrayObject<T>

The ArrayObject box class is a generic class that can be used to encapsulate an array inside an object. More...

Declarations

Fields
value : T[] The array contained in the ArrayObject.
Constructors
New ( value:T[] ) Creates a new ArrayObject with the given array.
Methods
ToArray : T[] () Returns the array contained in the ArrayObject.

Detailed Discussion

The ArrayObject box class is a generic class that can be used to encapsulate an array inside an object.


Fields Documentation

Field value : T[]

The array contained in the ArrayObject.


Constructors Documentation

Method New ( value:T[] )

Creates a new ArrayObject with the given array.


Methods Documentation

Method ToArray : T[] ()

Returns the array contained in the ArrayObject.