Re: [PATCH v6 3/3] c: Add __lengthof__ operator

2024-08-09 Thread Alejandro Colomar
On Fri, Aug 09, 2024 at 03:59:19PM GMT, Alejandro Colomar wrote: > This operator is similar to sizeof but can only be applied to an array, > and returns its length (number of elements). > > FUTURE DIRECTIONS: > > - We should make it work with array parameters to functions, >and somehow magic

[PATCH v6 3/3] c: Add __lengthof__ operator

2024-08-09 Thread Alejandro Colomar
This operator is similar to sizeof but can only be applied to an array, and returns its length (number of elements). FUTURE DIRECTIONS: - We should make it work with array parameters to functions, and somehow magically return the length designator of the array, regardless of it being reall