Neeraj Garg

Results 2 comments of Neeraj Garg

``` let rec getElementAt = (~index: int, l: list('a)) => switch l { | [] => None | [head, ..._] when index Some(head) | [head, ...tail] => getElementAt(~index=index-1, tail) };...

Small typo: `ListLabels`.length() returns the length of an array. It should be `ArrayLabels`.