public interface Concatenable<A>
Concatenable
that means you can concatenate it
with an A, usually resulting in another T. The conventional meaning for
concatenating transformations is the following: Let
ba = b.concatenate(a). 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 |
---|---|
Concatenable<A> |
concatenate(A a)
Concatenate this object with a.
|
Class<A> |
getConcatenableClass() |
Concatenable<A> concatenate(A a)
Copyright © 2015–2022 ImgLib2. All rights reserved.