EcuItemCollection
Type: EcuItemCollection
Various items such as Table / Map / Option / Channel stored in Gin or Ecu are within EcuItemCollections.
Properties
Property | Description |
length
| The number of items in the collection. |
Methods
Method | Description |
at(index)
| Get the object at the given index. e.g. gin.maps.at(0) returns the first item in the collection. |
find(name)
| Find the sub object with the given name. e.g. gin.maps.find('fuel'). The search is case-insensitive. |
indexOf(object)
| Given an object that is stored in the collection, return its index. |