lucee.Component
models.BaseProxy
models.Function
Functional Interface that maps to java.util.function.Function See https://docs.oracle.com/javase/8/docs/api/java/util/function/Function.html
| Constructor Summary | |
|---|---|
|
init(any f, [boolean debug='false'], [boolean loadAppContext='true'])
Constructor. |
|
| Method Summary | |
|---|---|
any
|
andThen([any after])
|
any
|
apply([any t])
Represents a function that accepts one argument and produces a result. |
any
|
compose([any before])
|
any
|
identity()
|
| Methods inherited from class lucee.Component |
|---|
| None |
| Constructor Detail |
|---|
Constructor
f - The lambda or closure to be used in the apply() methoddebug - Add debugging or notloadAppContext - By default, we load the Application context into the running thread. If you don't need it, then don't load it.| Method Detail |
|---|
afterRepresents a function that accepts one argument and produces a result.
tbefore