Home | Trees | Indices | Help |
|
---|
|
Some, basic definitions and functions.
Version: 22.05.04
Functions | |||
bool |
|
||
bool |
|
||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
Variables | |
__all__ = _ALL_LAZY.basics
|
Function Details |
Clip a string to the given length limit.
|
Like
|
Return the value of x as
|
Split a string in 2 halfs.
|
Check whether an object is
|
Return See Also:
Python's |
Check whether an object is
|
Check for non-finite
|
Check for
Note:
|
Check for INT0 or
|
Is
See Also: Function isnon0. |
Is
See Also: Function isnear0. |
Check for NEG0, negative
|
Check for NINF, negative
|
Is
See Also: Function isnear0. |
Is
|
Check for scalar types.
|
Check for sequence types.
Note:
Excluding |
Check for string types.
|
Check whether a class is a sub-class of some other class(es).
|
Make built-in function
|
Apply each argument to a single-argument function and return a
|
Apply arguments to a function and return a Unlike Python 2's built-in
|
Negate
|
Negate all of
|
Return sign of
|
Split an iterable into
Note:
Each generated slice is a Example: >>> from pygeodesy import splice >>> a, b = splice(range(10)) >>> a, b ((0, 2, 4, 6, 8), (1, 3, 5, 7, 9)) >>> a, b, c = splice(range(10), n=3) >>> a, b, c ((0, 3, 6, 9), (1, 4, 7), (2, 5, 8)) >>> a, b, c = splice(range(10), n=3, fill=-1) >>> a, b, c ((0, 3, 6, 9), (1, 4, 7, -1), (2, 5, 8, -1)) >>> tuple(splice(list(range(9)), n=5)) ([0, 5], [1, 6], [2, 7], [3, 8], [4]) >>> splice(range(9), n=1) <generator object splice at 0x0...> |
Return
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Wed May 4 16:33:49 2022 | http://epydoc.sourceforge.net |