public void DisplayFormat(RCRunner runner, RCClosure closure, RCCube right) { RCArray <string> column = right.DoColof <string> ("column", ""); RCArray <string> format = right.DoColof <string> ("format", ""); RCSystem.Log.UpdateColmap(column, format); // RCSystem.Log.Record (runner, closure, "display", 0, "format", "set to " + // right[0]); runner.Yield(closure, right); }
public void EvalColoft(RCRunner runner, RCClosure closure, RCCube right) { runner.Yield(closure, new RCTime(right.DoColof <RCTimeScalar> (0, RCTimeScalar.Empty, true))); }
public void EvalColofy(RCRunner runner, RCClosure closure, RCCube right) { runner.Yield(closure, new RCSymbol(right.DoColof <RCSymbolScalar> (0, RCSymbolScalar.Empty, false))); }
public void EvalColofb(RCRunner runner, RCClosure closure, RCCube right) { runner.Yield(closure, new RCBoolean(right.DoColof <bool> (0, false, false))); }
public void EvalColofm(RCRunner runner, RCClosure closure, RCDecimal left, RCCube right) { runner.Yield(closure, new RCDecimal(right.DoColof <decimal> (0, left[0], true))); }
public void EvalColofm(RCRunner runner, RCClosure closure, RCCube right) { runner.Yield(closure, new RCDecimal(right.DoColof <decimal> (0, 0, false))); }
public void EvalColofs(RCRunner runner, RCClosure closure, RCString left, RCCube right) { runner.Yield(closure, new RCString(right.DoColof <string> (0, left[0], true))); }
public void EvalColofs(RCRunner runner, RCClosure closure, RCCube right) { runner.Yield(closure, new RCString(right.DoColof <string> (0, "", false))); }
public void EvalColofl(RCRunner runner, RCClosure closure, RCCube right) { runner.Yield(closure, new RCLong(right.DoColof <long> (0, 0L, false))); }
public void EvalColofd(RCRunner runner, RCClosure closure, RCDouble left, RCCube right) { runner.Yield(closure, new RCDouble(right.DoColof <double> (0, left[0], true))); }
public void EvalColofd(RCRunner runner, RCClosure closure, RCCube right) { runner.Yield(closure, new RCDouble(right.DoColof <double> (0, 0.0, false))); }
public void EvalColofx(RCRunner runner, RCClosure closure, RCByte left, RCCube right) { runner.Yield(closure, new RCByte(right.DoColof <byte> (0, left[0], true))); }
public void EvalColofx(RCRunner runner, RCClosure closure, RCCube right) { runner.Yield(closure, new RCByte(right.DoColof <byte> (0, 0, false))); }
public void EvalColofy(RCRunner runner, RCClosure closure, RCSymbol left, RCCube right) { runner.Yield(closure, new RCSymbol(right.DoColof <RCSymbolScalar> (0, left[0], true))); }
public void EvalColofb(RCRunner runner, RCClosure closure, RCBoolean left, RCCube right) { runner.Yield(closure, new RCBoolean(right.DoColof <bool> (0, left[0], true))); }