algorithms/ fill.bi | |
License | Copyright © 2009, FreeBASIC Extended Library Development Group |
Functions | |
Fill | Assigns a value x to the elements in the range [first, last). |
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
declare sub Fill overload ( byval first as fbext_TypeName(T_) ptr, byval last as fbext_TypeName(T_) ptr, byref x as const fbext_TypeName(T_) )
Assigns a value x to the elements in the range [first, last).
first | A pointer to the first element in the range to assign. |
last | A pointer to one-past the last element in the range to assign. |
x | The value to assign. |
Assigns a value x to the elements in the range [first, last).
declare sub Fill overload ( byval first as fbext_TypeName(T_) ptr, byval last as fbext_TypeName(T_) ptr, byref x as const fbext_TypeName(T_) )