GenericRayArrayValue (object)¶
The GenericRayArrayValue is a typed implementation of the GenericArrayValue using a Ray array element.
Methods¶
GenericRayArrayValue ( in GenericRayArrayValue other ) | |
GenericRayArrayValue ( in RayArray value ) | |
GenericRayArrayValue () | |
GenericRayArrayValue | clone ? () |
Boolean | equals ? ( in Ref<GenericValue> other ) |
Ray | get ? ( in Index index ) |
RayArray | get ? () |
Type | getValueType ? () |
UInt32 | hash_ ? () |
Boolean | isArray ? () |
push ! ( in Ray value ) | |
resize ! ( in Size newSize ) | |
set ! ( in Index index, in Ray value ) | |
setCopy ! ( in RayArray value ) | |
setShared ! ( in RayArray value ) | |
Size | size ? () |
Methods in detail¶
GenericRayArrayValue ( in GenericRayArrayValue other )
copy constructor
GenericRayArrayValue ( in RayArray value )
value constructor
default constructor
GenericRayArrayValue GenericRayArrayValue.clone? ()
clone method
Boolean GenericRayArrayValue.equals? ( in Ref<GenericValue> other )
return true if this value array matches another one
Ray GenericRayArrayValue.get? ( in Index index )
returns an element the contained value array by index
RayArray GenericRayArrayValue.get? ()
returns the contained value array
Type GenericRayArrayValue.getValueType? ()
returns the name of the value type
UInt32 GenericRayArrayValue.hash_? ()
returns a hash value for this
Boolean GenericRayArrayValue.isArray? ()
returns true if this value contains an array
GenericRayArrayValue.push! ( in Ray value )
pushed an element to the contained value array
GenericRayArrayValue.resize! ( in Size newSize )
resizes the contained value array
GenericRayArrayValue.set! ( in Index index, in Ray value )
sets an element the contained value array by index
GenericRayArrayValue.setCopy! ( in RayArray value )
sets the contained value array (copying its contents)
GenericRayArrayValue.setShared! ( in RayArray value )
sets the contained value array (sharing the reference)
Size GenericRayArrayValue.size? ()
returns the size of the contained value array