public interface PreConcatenable<A>
PreConcatenable
that means you can
pre-concatenate it with an A, usually resulting in another T. The
conventional meaning for concatenating transformations is the following: Let
ba = a.preConcatenate(b). Applying ba to x is
equivalent to first applying a to x and then applying
b to the result.Modifier and Type | Method and Description |
---|---|
Class<A> |
getPreConcatenableClass() |
PreConcatenable<A> |
preConcatenate(A a)
Pre-concatenate this object with a.
|
PreConcatenable<A> preConcatenate(A a)
Copyright © 2015–2022 ImgLib2. All rights reserved.