-
Notifications
You must be signed in to change notification settings - Fork 3
array_get_length
myyrakle edited this page Jan 30, 2019
·
11 revisions
decl_array를 통해 구체화되는 함수입니다.
#define decl_array(declname, type, length)
size_t declname_get_length(const declname* self)
return length of array
self: Object self
length of array
Constants. O(1)
This function operates independently of the value of self. This is because the length value is already fixed at the time of macro extension.
The self parameter just exists for consistency.
...
...