Structure2D
A structure that is guaranteed to be two-dimensional.
Parameters
T
the type of items.
Types
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.
Properties
Inheritors
Extensions
Link copied to clipboard
fun <T> Structure2D<T>.asColumnarData(mapping: Map<Symbol, Int>): ColumnarData<T>
Content copied to clipboard
A zero-copy method to represent a Structure2D as a two-column x-y data. There could more than two columns in the structure.
Link copied to clipboard
fun <T> Structure2D<T>.asXYData(xIndex: Int = 0, yIndex: Int = 1): XYColumnarData<T, T, T>
Content copied to clipboard
A zero-copy method to represent a Structure2D as a two-column x-y data. There could more than two columns in the structure.