|
bool2NS(py)
Create an NSBoolean from a Python bool . |
|
|
|
bytes2NS(py)
Create an NSData from Python bytes . |
|
|
|
decimal2NS(py)
Create an NSDecimal from a Python Decimal . |
|
|
|
dict2NS(py)
Create an NSMutableDictionary from a Python
dict or frozendict . |
|
|
|
dicts2NS(py)
Create an NS[Mutable]Dictionary from a Python
dict or frozendict . |
|
|
|
float2NS(py)
Create an NSDouble instance from a Python
float or int . |
|
|
|
frozendict2NS(py)
Create an NSDictionary from a Python
frozendict or dict . |
|
|
|
frozenset2NS(py)
Create an NSSet from a Python frozenset or
set . |
|
|
|
generator2NS(py,
frozen=True)
Create an NS[Mutable]Array from a Python
generator . |
|
|
|
int2NS(py,
NS=None)
Create an NSNumber from a Python int or
long . |
|
|
|
iterable2NS(py,
frozen=True)
Create an NS[Mutable]Array from a Python
iterable . |
|
|
|
list2NS(py)
Create an NSMutableArray from a Python list
or tuple . |
|
|
|
listuple2NS(py)
Create an NS[Mutable]Array from a Python
list or tuple . |
|
|
|
map2NS(py,
frozen=True)
Create an NS[Mutable]Array from a Python
map . |
|
|
|
None2NS(py)
Return the NSNull singleton for Python's
None . |
|
|
|
py2NS(py)
Convert (an instance of) a Python object into an instance of the
equivalent NS... ObjC class: |
|
|
|
range2NS(py,
frozen=True)
Create an NS[Mutable]Array from a Python
range . |
|
|
|
set2NS(py)
Create an NSMutableSet from a Python set or
frozenset . |
|
|
|
sets2NS(py)
Create an NS[Mutable]Set instance from a Python
set or frozenset . |
|
|
|
str2NS(py)
Create an NSStr instance from a Python str . |
|
|
|
strs2NS(py,
frozen=True)
Create an NS[Mutable]String from a Python
str . |
|
|
|
time2NS(py=None,
since=1970)
Create an NSDate instance from a timestamp. |
|
|
|
tuple2NS(py)
Create an immutable NSArray instance from a Python
tuple or list . |
|
|
|
unicode2NS(py)
Create an NSStr instance from a Python
unicode string. |
|
|
|
url2NS(py,
url2=None)
Create an NSURL instance from a Python string. |
|
|
|
type2NS(py)
Create the NS... ObjC object for a Python Type (or
wrapper) instance. |
|
|