Class ArrayRange
java.lang.Object
ortus.boxlang.runtime.bifs.BIF
ortus.boxlang.runtime.bifs.global.array.ArrayRange
-
Field Summary
Fields inherited from class ortus.boxlang.runtime.bifs.BIF
__functionName, __isMemberExecution, asyncService, cacheService, componentService, declaredArguments, functionService, interceptorService, logger, moduleService, runtime, schedulerService -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription_invoke(IBoxContext context, ArgumentsScope arguments) Build an array out of a range of numbers or using our range syntax: {start}..{end} or using the from and to argumentsMethods inherited from class ortus.boxlang.runtime.bifs.BIF
announce, getDeclaredArguments, invoke
-
Constructor Details
-
ArrayRange
public ArrayRange()Constructor
-
-
Method Details
-
_invoke
Build an array out of a range of numbers or using our range syntax: {start}..{end} or using the from and to argumentsYou can also build negative ranges
arrayRange( "1..5" ) arrayRange( "-10..5" ) arrayRange( 1, 500 )
-