
org.cthul.proc.P2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cthul-matchers Show documentation
Show all versions of cthul-matchers Show documentation
Provides hamcrest.org matchers for strings and exceptions,
allows matching code blocks, and provides several utilities for
combining matchers.
The newest version!
package org.cthul.proc;
/**
* A {@link ProcBase ProcBase} with two parameters.
*/
public class P2 extends ProcBase> implements Proc2 {
protected P2(ProcBase source, Object[] args) {
super(source, args);
}
public P2(ProcBase source, A a, B b) {
super(source, a, b);
}
public P2(ProcBase source) {
super(source);
}
public P2(A a, B b) {
super(a, b);
}
public P2() {
}
/**
* {@inheritDoc}
*/
@Override
protected P2 createCopy(Object[] args) {
return new P2<>(this, args);
}
/**
* {@inheritDoc}
*/
@Override
@SuppressWarnings("unchecked")
protected Object run(Object[] args) throws Throwable {
assertArgCount(args, 2);
return run((A)args[0], (B)args[1]);
}
/**
* Executes the asProc.
* @param a
* @param b
* @return result
* @throws Throwable
*/
protected Object run(A a, B b) throws Throwable {
throw notImplemented("run(A, B)");
}
@Override
public P2 call(A a, B b) {
return copy(a, b);
}
@Override
public P2 with(A a, B b) {
return call(a, b);
}
@Override
public Proc1 curry(A a) {
return curry((Object) a).asProc1();
}
@Override
public Proc0 curry(A a, B b) {
return curry((Object) a, (Object) b).asProc0();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy