abstract class org.h2.index.AbstractFunctionCursor implements org.h2.index.Cursor
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: org.h2.index.AbstractFunctionCursor
  super_class: java.lang.Object
{
  private final org.h2.index.FunctionIndex index;
    descriptor: Lorg/h2/index/FunctionIndex;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.h2.result.SearchRow first;
    descriptor: Lorg/h2/result/SearchRow;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.h2.result.SearchRow last;
    descriptor: Lorg/h2/result/SearchRow;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  final org.h2.engine.Session session;
    descriptor: Lorg/h2/engine/Session;
    flags: (0x0010) ACC_FINAL

  org.h2.value.Value[] values;
    descriptor: [Lorg/h2/value/Value;
    flags: (0x0000) 

  org.h2.result.Row row;
    descriptor: Lorg/h2/result/Row;
    flags: (0x0000) 

  void <init>(org.h2.index.FunctionIndex, org.h2.result.SearchRow, org.h2.result.SearchRow, org.h2.engine.Session);
    descriptor: (Lorg/h2/index/FunctionIndex;Lorg/h2/result/SearchRow;Lorg/h2/result/SearchRow;Lorg/h2/engine/Session;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // org.h2.index.AbstractFunctionCursor this
        start local 1 // org.h2.index.FunctionIndex index
        start local 2 // org.h2.result.SearchRow first
        start local 3 // org.h2.result.SearchRow last
        start local 4 // org.h2.engine.Session session
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 43
            aload 0 /* this */
            aload 1 /* index */
            putfield org.h2.index.AbstractFunctionCursor.index:Lorg/h2/index/FunctionIndex;
         2: .line 44
            aload 0 /* this */
            aload 2 /* first */
            putfield org.h2.index.AbstractFunctionCursor.first:Lorg/h2/result/SearchRow;
         3: .line 45
            aload 0 /* this */
            aload 3 /* last */
            putfield org.h2.index.AbstractFunctionCursor.last:Lorg/h2/result/SearchRow;
         4: .line 46
            aload 0 /* this */
            aload 4 /* session */
            putfield org.h2.index.AbstractFunctionCursor.session:Lorg/h2/engine/Session;
         5: .line 47
            return
        end local 4 // org.h2.engine.Session session
        end local 3 // org.h2.result.SearchRow last
        end local 2 // org.h2.result.SearchRow first
        end local 1 // org.h2.index.FunctionIndex index
        end local 0 // org.h2.index.AbstractFunctionCursor this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/h2/index/AbstractFunctionCursor;
            0    6     1    index  Lorg/h2/index/FunctionIndex;
            0    6     2    first  Lorg/h2/result/SearchRow;
            0    6     3     last  Lorg/h2/result/SearchRow;
            0    6     4  session  Lorg/h2/engine/Session;
    MethodParameters:
         Name  Flags
      index    
      first    
      last     
      session  

  public org.h2.result.Row get();
    descriptor: ()Lorg/h2/result/Row;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.h2.index.AbstractFunctionCursor this
         0: .line 51
            aload 0 /* this */
            getfield org.h2.index.AbstractFunctionCursor.values:[Lorg/h2/value/Value;
            ifnonnull 2
         1: .line 52
            aconst_null
            areturn
         2: .line 54
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.AbstractFunctionCursor.row:Lorg/h2/result/Row;
            ifnonnull 4
         3: .line 55
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.AbstractFunctionCursor.session:Lorg/h2/engine/Session;
            aload 0 /* this */
            getfield org.h2.index.AbstractFunctionCursor.values:[Lorg/h2/value/Value;
            iconst_1
            invokevirtual org.h2.engine.Session.createRow:([Lorg/h2/value/Value;I)Lorg/h2/result/Row;
            putfield org.h2.index.AbstractFunctionCursor.row:Lorg/h2/result/Row;
         4: .line 57
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.AbstractFunctionCursor.row:Lorg/h2/result/Row;
            areturn
        end local 0 // org.h2.index.AbstractFunctionCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/h2/index/AbstractFunctionCursor;

  public org.h2.result.SearchRow getSearchRow();
    descriptor: ()Lorg/h2/result/SearchRow;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.index.AbstractFunctionCursor this
         0: .line 62
            aload 0 /* this */
            invokevirtual org.h2.index.AbstractFunctionCursor.get:()Lorg/h2/result/Row;
            areturn
        end local 0 // org.h2.index.AbstractFunctionCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/index/AbstractFunctionCursor;

  public boolean next();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // org.h2.index.AbstractFunctionCursor this
         0: .line 67
            aload 0 /* this */
            getfield org.h2.index.AbstractFunctionCursor.first:Lorg/h2/result/SearchRow;
            astore 1 /* first */
        start local 1 // org.h2.result.SearchRow first
         1: aload 0 /* this */
            getfield org.h2.index.AbstractFunctionCursor.last:Lorg/h2/result/SearchRow;
            astore 2 /* last */
        start local 2 // org.h2.result.SearchRow last
         2: .line 68
            aload 1 /* first */
            ifnonnull 14
            aload 2 /* last */
            ifnonnull 14
         3: .line 69
            aload 0 /* this */
            invokevirtual org.h2.index.AbstractFunctionCursor.nextImpl:()Z
            ireturn
         4: .line 72
      StackMap locals: org.h2.result.SearchRow org.h2.result.SearchRow
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.index.AbstractFunctionCursor.get:()Lorg/h2/result/Row;
            astore 3 /* current */
        start local 3 // org.h2.result.Row current
         5: .line 73
            aload 1 /* first */
            ifnull 9
         6: .line 74
            aload 0 /* this */
            getfield org.h2.index.AbstractFunctionCursor.index:Lorg/h2/index/FunctionIndex;
            aload 3 /* current */
            aload 1 /* first */
            invokevirtual org.h2.index.FunctionIndex.compareRows:(Lorg/h2/result/SearchRow;Lorg/h2/result/SearchRow;)I
            istore 4 /* comp */
        start local 4 // int comp
         7: .line 75
            iload 4 /* comp */
            ifge 9
         8: .line 76
            goto 14
        end local 4 // int comp
         9: .line 79
      StackMap locals: org.h2.result.Row
      StackMap stack:
            aload 2 /* last */
            ifnull 13
        10: .line 80
            aload 0 /* this */
            getfield org.h2.index.AbstractFunctionCursor.index:Lorg/h2/index/FunctionIndex;
            aload 3 /* current */
            aload 2 /* last */
            invokevirtual org.h2.index.FunctionIndex.compareRows:(Lorg/h2/result/SearchRow;Lorg/h2/result/SearchRow;)I
            istore 4 /* comp */
        start local 4 // int comp
        11: .line 81
            iload 4 /* comp */
            ifle 13
        12: .line 82
            goto 14
        end local 4 // int comp
        13: .line 85
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 3 // org.h2.result.Row current
        14: .line 71
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.index.AbstractFunctionCursor.nextImpl:()Z
            ifne 4
        15: .line 87
            iconst_0
            ireturn
        end local 2 // org.h2.result.SearchRow last
        end local 1 // org.h2.result.SearchRow first
        end local 0 // org.h2.index.AbstractFunctionCursor this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Lorg/h2/index/AbstractFunctionCursor;
            1   16     1    first  Lorg/h2/result/SearchRow;
            2   16     2     last  Lorg/h2/result/SearchRow;
            5   14     3  current  Lorg/h2/result/Row;
            7    9     4     comp  I
           11   13     4     comp  I

  abstract boolean nextImpl();
    descriptor: ()Z
    flags: (0x0400) ACC_ABSTRACT

  public boolean previous();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.index.AbstractFunctionCursor this
         0: .line 99
            aload 0 /* this */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokestatic org.h2.message.DbException.throwInternalError:(Ljava/lang/String;)Ljava/lang/RuntimeException;
            athrow
        end local 0 // org.h2.index.AbstractFunctionCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/index/AbstractFunctionCursor;
}
SourceFile: "AbstractFunctionCursor.java"