File: __init__.pxd

package info (click to toggle)
python-cytoolz 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 444 kB
  • sloc: python: 2,685; makefile: 36
file content (19 lines) | stat: -rw-r--r-- 742 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from cytoolz.itertoolz cimport (
    accumulate, c_merge_sorted, cons, count, drop, get, groupby, first,
    frequencies, interleave, interpose, isdistinct, isiterable, iterate,
    last, mapcat, nth, partition, partition_all, pluck, reduceby, remove,
    rest, second, sliding_window, take, tail, take_nth, unique, join,
    c_diff, topk, peek, random_sample, concat)


from cytoolz.functoolz cimport (
    c_compose, memoize, c_pipe, c_thread_first, c_thread_last,
    complement, curry, do, identity, excepts, flip)


from cytoolz.dicttoolz cimport (
    assoc, c_merge, c_merge_with, c_dissoc, get_in, keyfilter, keymap,
    itemfilter, itemmap, update_in, valfilter, valmap, assoc_in)


from cytoolz.recipes cimport countby, partitionby