3,499 packages
abseil.cxx
Abseil Common Libraries (C++); Google (2017).
agnes.c
NES emulation library with an easy to use API; Krzysztof Gabis (2019).
algebra3.cxx
Vector utilities for 2, 3, and 4 element vectors, all inline - by Jean-Francois Doue, Paul S. Heckbert, and J. Nagle (1993).
apelang.c
Ape Programming Language; Krzysztof Gabis (2020).
api-amazontranslate
Access Amazon Translate via HTTP API.
argon2.c
The password hash Argon2, winner of PHC; Jean-Philippe Aumasson (2015).
array-allof
Check if all values in array are truthy, like all().
array-any
Check if array has any truthy values, like any().
array-append
Append iterables to array, like Array.push().
array-arange
Return evenly spaced values within a given interval, like arange().
array-average
Get average of values in array.
array-binarysearch
Get index of value in sorted array.
array-binarysearch.closest
Get index of closest value in sorted array.
array-binarysearch.comparator
Get index of value in sorted array (using comparator).
array-binarysearch.comparator.closest
Get index of closest value in sorted array (using comparator).
array-binarysearch.comparator.first
Get index of first value in sorted array (using comparator).
array-binarysearch.comparator.last
Get index of last value in sorted array (using comparator).
array-binarysearch.first
Get index of first value in sorted array.
array-binarysearch.last
Get index of last value in sorted array.
array-compactto
Remove falsy values from array, like _.compact().
array-containsit
Check if an array contains another array.
array-copyto
Copy part of array to another array, like Array.slice().
array-count
Count occurences of value in array.
array-countall
Count occurences of all values in array.
array-equalto
Check if array is equal to another array.