public interface Block extends Serializable
| Modifier and Type | Interface and Description |
|---|---|
static class |
Block.Noop |
| Modifier and Type | Field and Description |
|---|---|
static Block |
NOOP
A function that does nothing.
|
| Modifier and Type | Method and Description |
|---|---|
Next |
eval(Env e,
Continuation k)
Executes this expression, then pass the result to the given continuation when it's available.
|
static final Block NOOP
Next eval(Env e, Continuation k)
To be more precise, this method does not evaluate the expression by itself synchronously.
Instead, the evaluation is done by the caller by repeatedly step executing
the resulting Next object.
Copyright © 2011–2019. All rights reserved.