memory/ arrays.bi | |
License | Copyright © 2009, FreeBASIC Extended Library Development Group |
ext | |
Functions | |
copyArray | Copies an Array of simple types rapidly. |
sliceArray | Copies a portion of an Array into a new array. |
Copyright © 2009, FreeBASIC Extended Library Development Group
Distributed under the FreeBASIC Extended Library Group license. See accompanying file LICENSE.txt or copy at http://code.google.com- /p- /fb-extended-lib- /wiki- /License
Functions | |
copyArray | Copies an Array of simple types rapidly. |
sliceArray | Copies a portion of an Array into a new array. |
declare sub copyArray overload ( src() as fbext_TypeName(T_) , dest() as fbext_TypeName(T_) , byval amount_ as uinteger )
Copies an Array of simple types rapidly.
src() | array to copy. |
dest() | array to hold copy of src, dest() will be overwritten. |
amount_ | number of elements to copy from element 0. |
declare sub sliceArray overload ( src() as fbext_TypeName(T_) , dest() as fbext_TypeName(T_) , byval start_ as uinteger, byval end_ as uinteger )
Copies a portion of an Array into a new array.
src() | the array to slice. |
dest() | the array to hold the sliced information, will be overwritten. |
start_ | the element in src() to start the slice. |
end_ | the element in src() to stop the slice. |
Copies an Array of simple types rapidly.
declare sub copyArray overload ( src() as fbext_TypeName(T_) , dest() as fbext_TypeName(T_) , byval amount_ as uinteger )
Copies a portion of an Array into a new array.
declare sub sliceArray overload ( src() as fbext_TypeName(T_) , dest() as fbext_TypeName(T_) , byval start_ as uinteger, byval end_ as uinteger )