grizzly 1.0.7 grizzly: ^1.0.7 copied to clipboard
A vector and matrix compute library for Dart.
import 'package:grizzly/grizzly.dart';
void main() {
print([1, 2, 1, 5, 3, 4, 5, 2, 3, 7, 3, 5, 4, 7, 6, 6, 6].unique()..zort());
print([1, 2, 3, 4, 5].gt(3));
print([1, 2, null, 4, 5].gt(3));
print([1, 2, 3] - [4, 5, 6]);
}