Package org.ojalgo.structure
Interface Access1D.Visitable<N extends java.lang.Comparable<N>>
-
- All Superinterfaces:
Structure1D
- All Known Subinterfaces:
Access2D.Visitable<N>
,AccessAnyD.Visitable<N>
,DecompositionStore<N>
,MatrixStore<N>
,PhysicalStore<N>
- All Known Implementing Classes:
AboveBelowStore
,AbstractStore
,Array1D
,Array2D
,ArrayAnyD
,ArrayC128
,ArrayH256
,ArrayQ128
,ArrayR032
,ArrayR064
,ArrayR128
,ArrayR256
,ArrayZ008
,ArrayZ016
,ArrayZ032
,ArrayZ064
,BasicArray
,BufferArray
,BufferR032
,BufferR064
,BufferZ008
,BufferZ016
,BufferZ032
,BufferZ064
,ColumnsStore
,ColumnsSupplier
,ComposingStore
,ConjugatedStore
,DenseArray
,DiagonalStore
,FactoryStore
,GenericStore
,IdentityStore
,ImageData
,ImageData.SingleChannel
,IterativeASS.SchurComplementSolver
,LeftRightStore
,LimitStore
,LogicalStore
,LowerHessenbergStore
,LowerSymmetricStore
,LowerTriangularStore
,NumberList
,OffHeapArray
,OffHeapR032
,OffHeapR064
,OffHeapZ008
,OffHeapZ016
,OffHeapZ032
,OffHeapZ064
,OffsetStore
,PlainArray
,PrimitiveArray
,R032Store
,R064Store
,RawStore
,ReferenceTypeArray
,RepeatedColumnsStore
,RepeatedRowsStore
,RowsStore
,RowsSupplier
,ScalarArray
,SegmentedArray
,SelectingStore
,ShadingStore
,SingleStore
,SparseArray
,SparseStore
,SuperimposedStore
,TransjugatedStore
,TransposedStore
,UnaryOperatoStore
,UpperHessenbergStore
,UpperSymmetricStore
,UpperTriangularStore
,WrapperStore
,ZeroStore
public static interface Access1D.Visitable<N extends java.lang.Comparable<N>> extends Structure1D
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.ojalgo.structure.Structure1D
Structure1D.BasicMapper<T>, Structure1D.IndexMapper<T>, Structure1D.IntIndex, Structure1D.Logical<S extends Structure1D,B extends Structure1D.Logical<S,B>>, Structure1D.LongIndex, Structure1D.LoopCallback
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
visitAll(VoidFunction<N> visitor)
void
visitOne(long index, VoidFunction<N> visitor)
default void
visitRange(long first, long limit, VoidFunction<N> visitor)
-
Methods inherited from interface org.ojalgo.structure.Structure1D
count, size
-
-
-
-
Method Detail
-
visitAll
default void visitAll(VoidFunction<N> visitor)
-
visitOne
void visitOne(long index, VoidFunction<N> visitor)
-
visitRange
default void visitRange(long first, long limit, VoidFunction<N> visitor)
-
-