allpy
view allpy/util.py @ 843:3a712982ceb8
blocks3d/wt: use vector instead of list as container for tasks
Actions are needed from this container:
* remove_if
* size
* push_back
list should have constant size(), but it has linear size in
some implementations (for example, in g++).
author | boris <bnagaev@gmail.com> |
---|---|
date | Wed, 20 Jul 2011 02:42:04 +0200 |
parents | 88b04c08f539 |
children | 927085d03977 |
line source
1 """Miscellanous utilities.
2 """
6 """The oppozite of zip() builtin."""
14 """Remove each of substrings from string."""
20 """Clone of dict that user may add attributes to."""
21 pass
24 """Clone of list that user may add attributes to."""
25 pass
28 """Clone of str that user may add attributes to."""
29 pass
32 """Warn about function being deprecated."""
36 """Lazy module import to help breaking bad import loops."""
46 )
50 # vim: set et ts=4 sts=4 sw=4: