Searched defs:ContainerApi (Results 1 – 1 of 1) sorted by relevance
112 struct ContainerApi { struct113 size_t (*size)(uintptr_t container); // return the size of container114 void (*resize)(uintptr_t container, size_t newSize); // resize the container.115 void (*erase)(uintptr_t container, size_t index); // remove element from container116 … uintptr_t (*insert)(uintptr_t container, size_t index); // insert element at location to container117 uintptr_t (*get)(uintptr_t container,119 Property property; // property type for the elements in array or container