io.github.ro4.check.Checker.pass(Context)
last analyzed

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
ccs 0
cts 0
cp 0
c 0
b 0
f 0
eloc 1
1
package io.github.ro4.check;
2
3
import io.github.ro4.Context;
4
5
public interface Checker {
6
7 1
    Checker ALWAYS_PASS = ctx -> true;
8
9 1
    Checker ALWAYS_REJECT = ctx -> false;
10
11
    boolean pass(Context ctx);
12
}
13