Decompiled Code For VLOOKUP( C133, D$133:F$135, 1.0, false )
The expression
=VLOOKUP( C133, D$133:F$135, 1.0, false )
is compiled to the following class(es):
package org.formulacompiler.gen; import org.formulacompiler.runtime.Computation; import org.formulacompiler.runtime.FormulaException; import org.formulacompiler.runtime.internal.Environment; import org.formulacompiler.runtime.internal.Runtime_v2; import org.formulacompiler.tests.reference.base.Inputs; import org.formulacompiler.tests.reference.base.Outputs; final class $Root extends Outputs implements Computation { private final Inputs $inputs; final Environment $environment; private boolean $arr$0$init; private String[] $constarr$0; $Root(Inputs inputs, Environment environment) { $environment = environment; $inputs = inputs; } final String get$0() { return $idx$0(Runtime_v2.fun_MATCH_Exact(get$1(), $arr$0()) - 1); } public final String str() { return get$0(); } final String[] $arr$0() { if (!$arr$0$init) { $arr$0$init = true; String[] strings = $constarr$0(); strings[0] = get$2(); return strings; } return $constarr$0(); } final String[] $constarr$0() { if ($constarr$0 == null) $constarr$0 = new String[] { null, "two", "three" }; return $constarr$0; } final String $idx$0(int i) { switch (i) { case 0: return get$2(); case 1: return "two"; case 2: return "three"; default: throw new FormulaException ("#VALUE/REF! because index is out of range in INDEX"); } } final String get$1() { return Runtime_v2.stringFromString($inputs.str(0)); } final String get$2() { return Runtime_v2.stringFromString($inputs.str(1)); } }