VirtualMatrix
class VirtualMatrix<out T : Any>(rowNum: Int, colNum: Int, generator: (i: Int, j: Int) -> T) : Structure2D<T>
Content copied to clipboard
The matrix where each element is evaluated each time when is being accessed.
Constructors
Functions
Link copied to clipboard
open override fun <F : StructureFeature> getFeature(type: KClass<out F>): F?
Content copied to clipboard
Feature is some additional structure information that allows to access it special properties or hints. If the feature is not present, null
is returned.