[go: up one dir, main page]

itertools 0.3.0

Extra iterator adaptors, iterator methods and macros.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# build with all feature flags in the nightly

FEATURES=

if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
    FEATURES="--features unstable"
else
    if [ "$1" = "bench" ]; then exit 0; fi
fi

exec cargo "$@" $FEATURES