DefaultFunctions

DefaultFunctions

Overview

DefaultFunctions is a class in Aspose.Font FOSS for Python.

DefaultFunctions.memcpy_Int copies count integer elements from src at src_offset to dst at dst_offset.

This class provides 8 methods for working with DefaultFunctions objects in Python programs. Available methods include: __init__, memcpyArray, memcpyArrayVector, memcpyVectorArray, memcpy_Int, memcpy_UInt, memset_Int, memset_UInt. All public members are accessible to any Python application after installing the Aspose.Font FOSS for Python package.

Methods

SignatureDescription
__init__()Calls init on this DefaultFunctions instance.
memcpy_Int(dst, dst_offset, src, src_offset, count)Copies count integer elements from src at src_offset to dst at dst_offset
memset_Int(b, offset, v, count)Sets count integer elements in array b starting at offset to value v
memcpy_UInt(dst, dst_offset, src, src_offset, count)Calls memcpy_UInt on this DefaultFunctions instance.
memset_UInt(b, offset, v, count)Calls memset_UInt on this DefaultFunctions instance.
memcpyArray(dst, dst_offset, src, src_offset, count)Calls memcpyArray on this DefaultFunctions instance.
memcpyVectorArray(dst, dst_offset, src, src_offset, count)Calls memcpyVectorArray on this DefaultFunctions instance.
memcpyArrayVector(dst, dst_offset, src, src_offset, count)Copies count elements from src at src_offset to dst at dst_offset, handling array‑to‑vector conversion

See Also