class org.jruby.RubyHash$BaseSet extends java.util.AbstractSet
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.jruby.RubyHash$BaseSet
  super_class: java.util.AbstractSet
{
  final org.jruby.RubyHash$EntryView view;
    descriptor: Lorg/jruby/RubyHash$EntryView;
    flags: (0x0010) ACC_FINAL

  final org.jruby.RubyHash this$0;
    descriptor: Lorg/jruby/RubyHash;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  public void <init>(org.jruby.RubyHash, org.jruby.RubyHash$EntryView);
    descriptor: (Lorg/jruby/RubyHash;Lorg/jruby/RubyHash$EntryView;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.jruby.RubyHash$BaseSet this
        start local 2 // org.jruby.RubyHash$EntryView view
         0: .line 2414
            aload 0 /* this */
            aload 1
            putfield org.jruby.RubyHash$BaseSet.this$0:Lorg/jruby/RubyHash;
            aload 0 /* this */
            invokespecial java.util.AbstractSet.<init>:()V
         1: .line 2415
            aload 0 /* this */
            aload 2 /* view */
            putfield org.jruby.RubyHash$BaseSet.view:Lorg/jruby/RubyHash$EntryView;
         2: .line 2416
            return
        end local 2 // org.jruby.RubyHash$EntryView view
        end local 0 // org.jruby.RubyHash$BaseSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jruby/RubyHash$BaseSet;
            0    3     2  view  Lorg/jruby/RubyHash$EntryView;
    MethodParameters:
        Name  Flags
      this$0  final
      view    

  public java.util.Iterator iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.jruby.RubyHash$BaseSet this
         0: .line 2420
            new org.jruby.RubyHash$BaseIterator
            dup
            aload 0 /* this */
            getfield org.jruby.RubyHash$BaseSet.this$0:Lorg/jruby/RubyHash;
            aload 0 /* this */
            getfield org.jruby.RubyHash$BaseSet.view:Lorg/jruby/RubyHash$EntryView;
            invokespecial org.jruby.RubyHash$BaseIterator.<init>:(Lorg/jruby/RubyHash;Lorg/jruby/RubyHash$EntryView;)V
            areturn
        end local 0 // org.jruby.RubyHash$BaseSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/RubyHash$BaseSet;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.jruby.RubyHash$BaseSet this
        start local 1 // java.lang.Object o
         0: .line 2425
            aload 0 /* this */
            getfield org.jruby.RubyHash$BaseSet.view:Lorg/jruby/RubyHash$EntryView;
            aload 0 /* this */
            getfield org.jruby.RubyHash$BaseSet.this$0:Lorg/jruby/RubyHash;
            aload 1 /* o */
            invokevirtual org.jruby.RubyHash$EntryView.contains:(Lorg/jruby/RubyHash;Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.jruby.RubyHash$BaseSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/RubyHash$BaseSet;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.RubyHash$BaseSet this
         0: .line 2430
            aload 0 /* this */
            getfield org.jruby.RubyHash$BaseSet.this$0:Lorg/jruby/RubyHash;
            invokevirtual org.jruby.RubyHash.clear:()V
         1: .line 2431
            return
        end local 0 // org.jruby.RubyHash$BaseSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/RubyHash$BaseSet;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.RubyHash$BaseSet this
         0: .line 2435
            aload 0 /* this */
            getfield org.jruby.RubyHash$BaseSet.this$0:Lorg/jruby/RubyHash;
            getfield org.jruby.RubyHash.size:I
            ireturn
        end local 0 // org.jruby.RubyHash$BaseSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/RubyHash$BaseSet;

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.jruby.RubyHash$BaseSet this
        start local 1 // java.lang.Object o
         0: .line 2440
            aload 0 /* this */
            getfield org.jruby.RubyHash$BaseSet.view:Lorg/jruby/RubyHash$EntryView;
            aload 0 /* this */
            getfield org.jruby.RubyHash$BaseSet.this$0:Lorg/jruby/RubyHash;
            aload 1 /* o */
            invokevirtual org.jruby.RubyHash$EntryView.remove:(Lorg/jruby/RubyHash;Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.jruby.RubyHash$BaseSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/RubyHash$BaseSet;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     
}
SourceFile: "RubyHash.java"
NestHost: org.jruby.RubyHash
InnerClasses:
  private BaseIterator = org.jruby.RubyHash$BaseIterator of org.jruby.RubyHash
  private BaseSet = org.jruby.RubyHash$BaseSet of org.jruby.RubyHash
  private abstract EntryView = org.jruby.RubyHash$EntryView of org.jruby.RubyHash