Arrays

class Arrays

some Array related tools (which should actualy be part of the language itsef)

Author

"Martin Krischik" «krischik@users.sourceforge.net»

Since

1.0

Constructors

Link copied to clipboard
private constructor()
Do not create

Properties

Link copied to clipboard
private val TAG: String
Logging tag

Functions

Link copied to clipboard
protected open fun clone(): Any
Link copied to clipboard
open fun <T> concat(first: Array<T>, element: T): Array<T>
append an element to an array
open fun <T> concat(first: Array<T>, second: Array<T>): Array<T>
concatenate two arrays
Link copied to clipboard
open fun <T> concatAll(first: Array<T>, rest: Array<Array<T>>): Array<T>
concatenate multiple arrays
Link copied to clipboard
open fun equals(obj: Any): Boolean
Link copied to clipboard
protected open fun finalize()
Link copied to clipboard
fun getClass(): Class<out Any>
Link copied to clipboard
open fun hashCode(): Int
Link copied to clipboard
fun notify()
Link copied to clipboard
fun notifyAll()
Link copied to clipboard
open fun <T> reverse(normal: Array<T>): Array<T>
Link copied to clipboard
open fun toString(): String
Link copied to clipboard
fun wait()