PyHigherOrderFunctionsModule
2007/03/30 (Fri) 22:07:46 JST
A higher-order functions module for my lesson of python extension.
あると便利かもしれないちょっとした高階関数を集めたPythonモジュールです。Python版と練習がてら無駄にCで実装した拡張モジュール版があります。
http://www.spice-of-life.net/archive/hof.tar.gz
Functions, 関数リスト
- find(f, seq)
- find_index(f, seq)
- find_indices(f, seq)
- all(f, seq)
- any(f, seq)
- take(f, seq)
- drop(f, seq)
- span(f, seq)
- partition(f, seq)