Uses of Interface
uk.ac.manchester.spinnaker.utils.MappableIterable
Package | Description |
---|---|
uk.ac.manchester.spinnaker.utils |
General utilities for the SpiNNaker runtime.
|
uk.ac.manchester.spinnaker.utils.progress |
ProegressBar (and Timer) utilities.
|
-
Uses of MappableIterable in uk.ac.manchester.spinnaker.utils
Classes in uk.ac.manchester.spinnaker.utils that implement MappableIterable Modifier and Type Class Description class
DoubleMapIterable<V>
An Iterable for a Map or Collection of Maps.class
ReaderLineIterable
A simple one-shot iterable wrapper for a reader.class
TripleMapIterable<V>
An Iterator for a Map or Collection of Maps of maps.Methods in uk.ac.manchester.spinnaker.utils that return MappableIterable Modifier and Type Method Description default MappableIterable<T>
MappableIterable. filter(Predicate<T> filterer)
Apply a filter to an iterable to get another iterable.default MappableIterable<T>
MappableIterable. first(int n)
Get another iterable with the firstn
item in the iterable (or up to that if the source iterable has fewer items).default <U> MappableIterable<U>
MappableIterable. map(Function<T,U> mapper)
Apply a function to an iterable to get another iterable.static MappableIterable<ByteBuffer>
ByteBufferUtils. sliceUp(ByteBuffer src, int chunkSize)
Slice up a buffer buffer into a sequence of (little-endian) byte buffers with a maximum size. -
Uses of MappableIterable in uk.ac.manchester.spinnaker.utils.progress
Classes in uk.ac.manchester.spinnaker.utils.progress that implement MappableIterable Modifier and Type Class Description class
ProgressIterable<E>
AnIterable
wrapper that will start aProgressBar
for each iterator.