Std classes
We use the include
keyword to load an external class. It could be static or non-static.
An example of including string
std-lib:
include(static:std:string)
Now you can perform standard operations on a string:
println(" Melon ".trim())
// "Melon"
String
An example of all the standard methods offered for a String:
indexOfChar(letter: Char): Int
indexOfFrom(substring: String, from: Int): Int
searches for a substring from the given positionindexOf(substring: String): Int
contains(substring: String): Bool
startsWith(prefix: String): Bool
endsWith(suffix: String): Bool
uppercase(): String
lowercase(): String
part(from: Int, to: Int)
returns part of a stringsubstring(from: Int)
trim(): String
replace(match: String, replacement: String): String
isAlpha(): Bool
check if the string contains only English charactersisNumeric(): Bool
if the string contains a valid numerical valuetoCharArray(): Array<Char>
repeat(nTimes: Int): String
repeats the string n number of timessplit(delimiter: String): Array<String>
splitOnce(delimiter: String): Array<String>
splits the string once at a given delimitersize(): Int
toIntRadix(radix: Int): Int
parses string to a specific numeric basetoInt(): Int
converts the string into a valid base 10 int
Array
include(static:std:array)
indexOf(element: Any): Int
contains(element: Int): Bool
isEmpty(): Bool
recursiveLen(): Int
returns length of the array, include that of nested arraysflatten(): Array
converts a nested array into a flat onesize(): Int
add(element: Any): Any
removeAt(index: Int): Any
string(): String
a string representation of elements
Note that add()
and removeAt()
operations returns a newly allocated array.
Int
include(static:std:array)
pow(power: Int): Int
root(number: Int): Int
mag(number: Int): Int
returns a positive integer
List
Unlike other classes, List is an Object
type extension that needs to be instantiated.
include(std:list)
let names = new list(10) // creates a list of initial size 10
names.add("Hack")
names.add("Club!")
println(names)
// [Hack, Club!]
add(element: Any)
addAt(at: Int)
get(at: Int): Any
set(element: Any, at: Int)
indexOf(element: Any): Int
contains(element: Any): Bool
remove(at: Int): Any
removes and returns the element removedremoveElement(element: Any)
removes the specific element from the listclear()
clears all the elements presentarray(): Array
arrayOfRange(from: Int, end: Int): Array
string(): String
returns a string representation of elements present
Math
include(static:std:math)
println(math.max(5, 8))
// 8
min(a: Int, b: Int): Int
max(a: Int, b: Int): Int
abs(a: Int): Int
avg(nums: Array<Int>): Int
returns average of the given int array
Type
include(static:std:etype)
println(typeOf("hello").isStdLib())
// true