The LargeList type exposes the following members.
Back to Top
Methods
Name | Description | |
---|---|---|
![]() | Add(IList) |
Add values to list. Fail if a value's key exists and list is configured for unique keys.
If value is a map, the key is identified by "key" entry. Otherwise, the value is the key.
If large list does not exist, create it using specified userModule configuration.
|
![]() | Add(Value) |
Add value to list. Fail if value's key exists and list is configured for unique keys.
If value is a map, the key is identified by "key" entry. Otherwise, the value is the key.
If large list does not exist, create it using specified userModule configuration.
|
![]() | Add( Value ) |
Add values to list. Fail if a value's key exists and list is configured for unique keys.
If value is a map, the key is identified by "key" entry. Otherwise, the value is the key.
If large list does not exist, create it using specified userModule configuration.
|
![]() | Destroy |
Delete bin containing the list.
|
![]() | Filter |
Select values from list and apply specified Lua filter.
|
![]() | Find |
Select values from list.
|
![]() | FindThenFilter |
Select values from list and apply specified Lua filter.
|
![]() | GetCapacity |
Return maximum number of entries in the list.
|
![]() | GetConfig |
Return map of list configuration parameters.
|
![]() | Range |
Select range of values from list.
|
![]() | Remove |
Delete value from list.
|
![]() | Scan |
Return all objects in the list.
|
![]() | SetCapacity |
Set maximum number of entries in the list.
|
![]() | Size |
Return size of list.
|
![]() | Update(IList) |
Update/Add each value in values list depending if key exists or not.
If value is a map, the key is identified by "key" entry. Otherwise, the value is the key.
If large list does not exist, create it using specified userModule configuration.
|
![]() | Update(Value) |
Update value in list if key exists. Add value to list if key does not exist.
If value is a map, the key is identified by "key" entry. Otherwise, the value is the key.
If large list does not exist, create it using specified userModule configuration.
|
![]() | Update( Value ) |
Update/Add each value in array depending if key exists or not.
If value is a map, the key is identified by "key" entry. Otherwise, the value is the key.
If large list does not exist, create it using specified userModule configuration.
|
See Also