public class org.apache.commons.math3.analysis.function.StepFunction implements org.apache.commons.math3.analysis.UnivariateFunction
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.analysis.function.StepFunction
  super_class: java.lang.Object
{
  private final double[] abscissa;
    descriptor: [D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final double[] ordinate;
    descriptor: [D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(double[], double[]);
    descriptor: ([D[D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.analysis.function.StepFunction this
        start local 1 // double[] x
        start local 2 // double[] y
         0: .line 61
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 65
            aload 1 /* x */
            ifnull 3
         2: .line 66
            aload 2 /* y */
            ifnonnull 4
         3: .line 67
      StackMap locals: org.apache.commons.math3.analysis.function.StepFunction double[] double[]
      StackMap stack:
            new org.apache.commons.math3.exception.NullArgumentException
            dup
            invokespecial org.apache.commons.math3.exception.NullArgumentException.<init>:()V
            athrow
         4: .line 69
      StackMap locals:
      StackMap stack:
            aload 1 /* x */
            arraylength
            ifeq 6
         5: .line 70
            aload 2 /* y */
            arraylength
            ifne 7
         6: .line 71
      StackMap locals:
      StackMap stack:
            new org.apache.commons.math3.exception.NoDataException
            dup
            invokespecial org.apache.commons.math3.exception.NoDataException.<init>:()V
            athrow
         7: .line 73
      StackMap locals:
      StackMap stack:
            aload 2 /* y */
            arraylength
            aload 1 /* x */
            arraylength
            if_icmpeq 9
         8: .line 74
            new org.apache.commons.math3.exception.DimensionMismatchException
            dup
            aload 2 /* y */
            arraylength
            aload 1 /* x */
            arraylength
            invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(II)V
            athrow
         9: .line 76
      StackMap locals:
      StackMap stack:
            aload 1 /* x */
            invokestatic org.apache.commons.math3.util.MathArrays.checkOrder:([D)V
        10: .line 78
            aload 0 /* this */
            aload 1 /* x */
            invokestatic org.apache.commons.math3.util.MathArrays.copyOf:([D)[D
            putfield org.apache.commons.math3.analysis.function.StepFunction.abscissa:[D
        11: .line 79
            aload 0 /* this */
            aload 2 /* y */
            invokestatic org.apache.commons.math3.util.MathArrays.copyOf:([D)[D
            putfield org.apache.commons.math3.analysis.function.StepFunction.ordinate:[D
        12: .line 80
            return
        end local 2 // double[] y
        end local 1 // double[] x
        end local 0 // org.apache.commons.math3.analysis.function.StepFunction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lorg/apache/commons/math3/analysis/function/StepFunction;
            0   13     1     x  [D
            0   13     2     y  [D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NonMonotonicSequenceException
    MethodParameters:
      Name  Flags
      x     
      y     

  public double value(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // org.apache.commons.math3.analysis.function.StepFunction this
        start local 1 // double x
         0: .line 84
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.function.StepFunction.abscissa:[D
            dload 1 /* x */
            invokestatic java.util.Arrays.binarySearch:([DD)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 85
            dconst_0
            dstore 4 /* fx */
        start local 4 // double fx
         2: .line 87
            iload 3 /* index */
            iconst_m1
            if_icmpge 5
         3: .line 89
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.function.StepFunction.ordinate:[D
            iload 3 /* index */
            ineg
            iconst_2
            isub
            daload
            dstore 4 /* fx */
         4: .line 90
            goto 9
      StackMap locals: int double
      StackMap stack:
         5: iload 3 /* index */
            iflt 8
         6: .line 92
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.function.StepFunction.ordinate:[D
            iload 3 /* index */
            daload
            dstore 4 /* fx */
         7: .line 93
            goto 9
         8: .line 96
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.function.StepFunction.ordinate:[D
            iconst_0
            daload
            dstore 4 /* fx */
         9: .line 99
      StackMap locals:
      StackMap stack:
            dload 4 /* fx */
            dreturn
        end local 4 // double fx
        end local 3 // int index
        end local 1 // double x
        end local 0 // org.apache.commons.math3.analysis.function.StepFunction this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/apache/commons/math3/analysis/function/StepFunction;
            0   10     1      x  D
            1   10     3  index  I
            2   10     4     fx  D
    MethodParameters:
      Name  Flags
      x     
}
SourceFile: "StepFunction.java"