str.copy...
Copying. The method copies data into a string.
method str str.copy (
uint ptr
)
uint ptr
)
Parameters
ptr | The pointer to the data being copied. All data to the zero character will be copied. |
Return value
Returns the object which method has been called.
str.load
The method copies data into a string.
method str str.load (
uint ptr,
uint len
)
uint ptr,
uint len
)
Parameters
src | The pointer to the data being copied. If data does not end in a zero, it will be added automatically. |
size | The size of the data being copied. |
Return value
Returns the object which method has been called.
Related links | Source |