clay/generator/array_get_slice.template.c

3 lines
168 B
C
Raw Normal View History

$TYPE$ *$NAME$Slice_Get($NAME$Slice *slice, int32_t index) {
2024-10-22 07:41:35 +00:00
return Clay__Array_RangeCheck(index, slice->length) ? &slice->internalArray[index] : $DEFAULT_VALUE$;
}