final class org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag<T> extends org.eclipse.collections.impl.bag.immutable.AbstractImmutableBag<T> implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag
  super_class: org.eclipse.collections.impl.bag.immutable.AbstractImmutableBag
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private final T value;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TT;

  void <init>();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // java.lang.Object object
         0: .line 61
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.bag.immutable.AbstractImmutableBag.<init>:()V
         1: .line 63
            aload 0 /* this */
            aload 1 /* object */
            putfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
         2: .line 64
            return
        end local 1 // java.lang.Object object
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    3     1  object  TT;
    Signature: (TT;)V
    MethodParameters:
        Name  Flags
      object  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 69
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 75
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    3     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <IV> IV injectInto(IV, org.eclipse.collections.api.block.function.Function2<? super IV, ? super T, ? extends IV>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.Function2 function
         0: .line 81
            aload 2 /* function */
            aload 1 /* injectedValue */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function2 function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  injectedValue  TIV;
            0    1     2       function  Lorg/eclipse/collections/api/block/function/Function2<-TIV;-TT;+TIV;>;
    Signature: <IV:Ljava/lang/Object;>(TIV;Lorg/eclipse/collections/api/block/function/Function2<-TIV;-TT;+TIV;>;)TIV;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public T min(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // java.util.Comparator comparator
         0: .line 87
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)TT;
    MethodParameters:
            Name  Flags
      comparator  

  public T max(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // java.util.Comparator comparator
         0: .line 93
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)TT;
    MethodParameters:
            Name  Flags
      comparator  

  public T min();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 99
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
    Signature: ()TT;

  public T max();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 105
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
    Signature: ()TT;

  public <V extends java.lang.Comparable<? super V>> T minBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 111
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V::Ljava/lang/Comparable<-TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)TT;
    MethodParameters:
          Name  Flags
      function  

  public <V extends java.lang.Comparable<? super V>> T maxBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 117
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V::Ljava/lang/Comparable<-TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)TT;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.bag.ImmutableBag<T> newWith(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // java.lang.Object element
         0: .line 123
            getstatic org.eclipse.collections.api.factory.Bags.immutable:Lorg/eclipse/collections/api/factory/bag/ImmutableBagFactory;
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            aastore
            dup
            iconst_1
            aload 1 /* element */
            aastore
            invokeinterface org.eclipse.collections.api.factory.bag.ImmutableBagFactory.with:([Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  element  TT;
    Signature: (TT;)Lorg/eclipse/collections/api/bag/ImmutableBag<TT;>;
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.api.bag.ImmutableBag<T> newWithout(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // java.lang.Object element
         0: .line 129
            aload 0 /* this */
            aload 1 /* element */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.equal:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.emptyIfMatchesOrThis:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  element  TT;
    Signature: (TT;)Lorg/eclipse/collections/api/bag/ImmutableBag<TT;>;
    MethodParameters:
         Name  Flags
      element  

  private org.eclipse.collections.api.bag.ImmutableBag<T> emptyIfMatchesOrThis(org.eclipse.collections.api.block.predicate.Predicate<java.lang.Object>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 134
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 1
            getstatic org.eclipse.collections.api.factory.Bags.immutable:Lorg/eclipse/collections/api/factory/bag/ImmutableBagFactory;
            invokeinterface org.eclipse.collections.api.factory.bag.ImmutableBagFactory.empty:()Lorg/eclipse/collections/api/bag/ImmutableBag;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
      StackMap locals:
      StackMap stack: org.eclipse.collections.api.bag.ImmutableBag
         2: areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    3     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<Ljava/lang/Object;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<Ljava/lang/Object;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.bag.ImmutableBag<T> newWithAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // java.lang.Iterable elements
         0: .line 140
            aload 1 /* elements */
            invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            astore 2 /* bag */
        start local 2 // org.eclipse.collections.api.bag.MutableBag bag
         1: .line 141
            aload 2 /* bag */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.bag.MutableBag.with:(Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            invokeinterface org.eclipse.collections.api.bag.MutableBag.toImmutable:()Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
        end local 2 // org.eclipse.collections.api.bag.MutableBag bag
        end local 1 // java.lang.Iterable elements
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    2     1  elements  Ljava/lang/Iterable<+TT;>;
            1    2     2       bag  Lorg/eclipse/collections/api/bag/MutableBag<TT;>;
    Signature: (Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.api.bag.ImmutableBag<T> newWithoutAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // java.lang.Iterable elements
         0: .line 147
            aload 0 /* this */
            aload 1 /* elements */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.in:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.emptyIfMatchesOrThis:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
        end local 1 // java.lang.Iterable elements
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  elements  Ljava/lang/Iterable<+TT;>;
    Signature: (Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 153
            iconst_1
            ireturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 159
            iconst_0
            ireturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;

  public boolean notEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 165
            iconst_1
            ireturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;

  public T getFirst();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 171
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
    Signature: ()TT;

  public T getLast();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 177
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
    Signature: ()TT;

  public T getOnly();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 183
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
    Signature: ()TT;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // java.lang.Object object
         0: .line 189
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            aload 1 /* object */
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  object  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  

  public boolean containsAllIterable(java.lang.Iterable<?>);
    descriptor: (Ljava/lang/Iterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // java.lang.Iterable source
         0: .line 195
            aload 1 /* source */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.equal:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            invokestatic org.eclipse.collections.impl.utility.Iterate.allSatisfy:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // java.lang.Iterable source
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  source  Ljava/lang/Iterable<*>;
    Signature: (Ljava/lang/Iterable<*>;)Z
    MethodParameters:
        Name  Flags
      source  

  public boolean containsAllArguments(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // java.lang.Object[] elements
         0: .line 201
            aload 1 /* elements */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.equal:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.allSatisfy:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // java.lang.Object[] elements
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  elements  [Ljava/lang/Object;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.api.bag.ImmutableBag<T> selectByOccurrences(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
         0: .line 207
            aload 1 /* predicate */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.IntPredicate.accept:(I)Z
            ifeq 2
         1: .line 208
            aload 0 /* this */
            goto 3
         2: .line 209
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.api.factory.Bags.immutable:Lorg/eclipse/collections/api/factory/bag/ImmutableBagFactory;
            invokeinterface org.eclipse.collections.api.factory.bag.ImmutableBagFactory.empty:()Lorg/eclipse/collections/api/bag/ImmutableBag;
         3: .line 207
      StackMap locals:
      StackMap stack: org.eclipse.collections.api.bag.ImmutableBag
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    4     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;
    Signature: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/ImmutableBag<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.bag.ImmutableBag<T> select(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 215
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 216
            aload 0 /* this */
            goto 3
         2: .line 217
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.api.factory.Bags.immutable:Lorg/eclipse/collections/api/factory/bag/ImmutableBagFactory;
            invokeinterface org.eclipse.collections.api.factory.bag.ImmutableBagFactory.empty:()Lorg/eclipse/collections/api/bag/ImmutableBag;
         3: .line 215
      StackMap locals:
      StackMap stack: org.eclipse.collections.api.bag.ImmutableBag
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    4     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <R extends java.util.Collection<T>> R select(org.eclipse.collections.api.block.predicate.Predicate<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // java.util.Collection target
         0: .line 223
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 225
            aload 2 /* target */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         2: .line 227
      StackMap locals:
      StackMap stack:
            aload 2 /* target */
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    3     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    3     2     target  TR;
    Signature: <R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      target     

  public <P, R extends java.util.Collection<T>> R selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
        start local 3 // java.util.Collection target
         0: .line 236
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 2
         1: .line 238
            aload 3 /* target */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         2: .line 240
      StackMap locals:
      StackMap stack:
            aload 3 /* target */
            areturn
        end local 3 // java.util.Collection target
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    3     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    3     2  parameter  TP;
            0    3     3     target  TR;
    Signature: <P:Ljava/lang/Object;R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  
      target     

  public org.eclipse.collections.api.bag.ImmutableBag<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 246
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 247
            getstatic org.eclipse.collections.api.factory.Bags.immutable:Lorg/eclipse/collections/api/factory/bag/ImmutableBagFactory;
            invokeinterface org.eclipse.collections.api.factory.bag.ImmutableBagFactory.empty:()Lorg/eclipse/collections/api/bag/ImmutableBag;
            goto 3
         2: .line 248
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
         3: .line 246
      StackMap locals:
      StackMap stack: org.eclipse.collections.api.bag.ImmutableBag
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    4     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <R extends java.util.Collection<T>> R reject(org.eclipse.collections.api.block.predicate.Predicate<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // java.util.Collection target
         0: .line 254
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifne 2
         1: .line 256
            aload 2 /* target */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         2: .line 258
      StackMap locals:
      StackMap stack:
            aload 2 /* target */
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    3     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    3     2     target  TR;
    Signature: <R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      target     

  public <P, R extends java.util.Collection<T>> R rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
        start local 3 // java.util.Collection target
         0: .line 267
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 2
         1: .line 269
            aload 3 /* target */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         2: .line 271
      StackMap locals:
      StackMap stack:
            aload 3 /* target */
            areturn
        end local 3 // java.util.Collection target
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    3     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    3     2  parameter  TP;
            0    3     3     target  TR;
    Signature: <P:Ljava/lang/Object;R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  
      target     

  public <S> org.eclipse.collections.api.bag.ImmutableBag<S> selectInstancesOf(java.lang.Class<S>);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // java.lang.Class clazz
         0: .line 277
            aload 1 /* clazz */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokevirtual java.lang.Class.isInstance:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 278
            aload 0 /* this */
            goto 3
         2: .line 279
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.api.factory.Bags.immutable:Lorg/eclipse/collections/api/factory/bag/ImmutableBagFactory;
            invokeinterface org.eclipse.collections.api.factory.bag.ImmutableBagFactory.empty:()Lorg/eclipse/collections/api/bag/ImmutableBag;
         3: .line 277
      StackMap locals:
      StackMap stack: org.eclipse.collections.api.bag.ImmutableBag
            areturn
        end local 1 // java.lang.Class clazz
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    4     1  clazz  Ljava/lang/Class<TS;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Class<TS;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<TS;>;
    MethodParameters:
       Name  Flags
      clazz  

  public <V> org.eclipse.collections.api.bag.ImmutableBag<V> collect(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 285
            getstatic org.eclipse.collections.api.factory.Bags.immutable:Lorg/eclipse/collections/api/factory/bag/ImmutableBagFactory;
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.bag.ImmutableBagFactory.with:(Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <V> org.eclipse.collections.api.bag.ImmutableBag<V> collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function function
         0: .line 293
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 294
            getstatic org.eclipse.collections.api.factory.Bags.immutable:Lorg/eclipse/collections/api/factory/bag/ImmutableBagFactory;
            aload 2 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.bag.ImmutableBagFactory.with:(Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            goto 3
         2: .line 295
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.api.factory.Bags.immutable:Lorg/eclipse/collections/api/factory/bag/ImmutableBagFactory;
            invokeinterface org.eclipse.collections.api.factory.bag.ImmutableBagFactory.empty:()Lorg/eclipse/collections/api/bag/ImmutableBag;
         3: .line 293
      StackMap locals:
      StackMap stack: org.eclipse.collections.api.bag.ImmutableBag
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    4     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    4     2   function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public <V, R extends java.util.Collection<V>> R collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function function
        start local 3 // java.util.Collection target
         0: .line 302
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 304
            aload 3 /* target */
            aload 2 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         2: .line 306
      StackMap locals:
      StackMap stack:
            aload 3 /* target */
            areturn
        end local 3 // java.util.Collection target
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    3     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    3     2   function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    3     3     target  TR;
    Signature: <V:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      function   
      target     

  public <V> org.eclipse.collections.api.bag.ImmutableBag<V> flatCollect(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 312
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:()Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.impl.bag.mutable.HashBag
            invokevirtual org.eclipse.collections.impl.bag.mutable.HashBag.toImmutable:()Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <V, R extends java.util.Collection<V>> R flatCollect(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // java.util.Collection target
         0: .line 319
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Iterable
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.addAllTo:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            pop
         1: .line 320
            aload 2 /* target */
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    2     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
            0    2     2    target  TR;
    Signature: <V:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public T detect(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 326
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 327
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            goto 3
         2: .line 328
      StackMap locals:
      StackMap stack:
            aconst_null
         3: .line 326
      StackMap locals:
      StackMap stack: java.lang.Object
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    4     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)TT;
    MethodParameters:
           Name  Flags
      predicate  

  public java.util.Optional<T> detectOptional(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 334
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 335
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokestatic java.util.Optional.of:(Ljava/lang/Object;)Ljava/util/Optional;
            goto 3
         2: .line 336
      StackMap locals:
      StackMap stack:
            invokestatic java.util.Optional.empty:()Ljava/util/Optional;
         3: .line 334
      StackMap locals:
      StackMap stack: java.util.Optional
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    4     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Ljava/util/Optional<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public T detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.function.Function0<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 342
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 343
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            goto 3
         2: .line 344
      StackMap locals:
      StackMap stack:
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
         3: .line 342
      StackMap locals:
      StackMap stack: java.lang.Object
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function0 function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    4     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    4     2   function  Lorg/eclipse/collections/api/block/function/Function0<+TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function0<+TT;>;)TT;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public int count(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 350
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 351
            iconst_1
            goto 3
         2: .line 352
      StackMap locals:
      StackMap stack:
            iconst_0
         3: .line 350
      StackMap locals:
      StackMap stack: int
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    4     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)I
    MethodParameters:
           Name  Flags
      predicate  

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 358
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <V> org.eclipse.collections.api.multimap.bag.ImmutableBagMultimap<V, T> groupBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 364
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.multimap.bag.HashBagMultimap.newMultimap:()Lorg/eclipse/collections/impl/multimap/bag/HashBagMultimap;
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.groupBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            checkcast org.eclipse.collections.impl.multimap.bag.HashBagMultimap
            invokevirtual org.eclipse.collections.impl.multimap.bag.HashBagMultimap.toImmutable:()Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <V, R extends org.eclipse.collections.api.multimap.MutableMultimap<V, T>> R groupBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
         0: .line 370
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            aload 0 /* this */
            invokeinterface org.eclipse.collections.api.multimap.MutableMultimap.putAll:(Ljava/lang/Object;Ljava/lang/Iterable;)Z
            pop
         1: .line 371
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    2     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    2     2    target  TR;
    Signature: <V:Ljava/lang/Object;R::Lorg/eclipse/collections/api/multimap/MutableMultimap<TV;TT;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public <V> org.eclipse.collections.api.multimap.bag.ImmutableBagMultimap<V, T> groupByEach(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 377
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.multimap.bag.HashBagMultimap.newMultimap:()Lorg/eclipse/collections/impl/multimap/bag/HashBagMultimap;
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            checkcast org.eclipse.collections.impl.multimap.bag.HashBagMultimap
            invokevirtual org.eclipse.collections.impl.multimap.bag.HashBagMultimap.toImmutable:()Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <V, R extends org.eclipse.collections.api.multimap.MutableMultimap<V, T>> R groupByEach(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
         0: .line 383
            aload 0 /* this */
            aload 2 /* target */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.block.procedure.MultimapEachPutProcedure.on:(Lorg/eclipse/collections/api/multimap/MutableMultimap;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/block/procedure/MultimapEachPutProcedure;
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 384
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    2     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
            0    2     2    target  TR;
    Signature: <V:Ljava/lang/Object;R::Lorg/eclipse/collections/api/multimap/MutableMultimap<TV;TT;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public int sizeDistinct();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 390
            iconst_1
            ireturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;

  public int occurrencesOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // java.lang.Object item
         0: .line 396
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            aload 1 /* item */
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // java.lang.Object item
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    3     1  item  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      item  

  public void forEachWithOccurrences(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 402
            aload 1 /* objectIntProcedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            iconst_1
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure.value:(Ljava/lang/Object;I)V
         1: .line 403
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    2     1  objectIntProcedure  Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;)V
    MethodParameters:
                    Name  Flags
      objectIntProcedure  

  public <V, R extends java.util.Collection<V>> R collectWithOccurrences(org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction<? super T, ? extends V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction function
        start local 2 // java.util.Collection target
         0: .line 408
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            iconst_1
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction.valueOf:(Ljava/lang/Object;I)Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         1: .line 409
            aload 2 /* target */
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction function
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    2     1  function  Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction<-TT;+TV;>;
            0    2     2    target  TR;
    Signature: <V:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction<-TT;+TV;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.api.map.MutableMap<T, java.lang.Integer> toMapOfItemToCount();
    descriptor: ()Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 415
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            iconst_1
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokestatic org.eclipse.collections.impl.map.mutable.UnifiedMap.newWithKeysValues:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/map/mutable/UnifiedMap;
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
    Signature: ()Lorg/eclipse/collections/api/map/MutableMap<TT;Ljava/lang/Integer;>;

  public org.eclipse.collections.api.bag.ImmutableBag<T> toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 421
            aload 0 /* this */
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
    Signature: ()Lorg/eclipse/collections/api/bag/ImmutableBag<TT;>;

  public void each(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 427
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
         1: .line 428
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 433
            aload 1 /* objectIntProcedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            iconst_0
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure.value:(Ljava/lang/Object;I)V
         1: .line 434
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    2     1  objectIntProcedure  Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;)V
    MethodParameters:
                    Name  Flags
      objectIntProcedure  

  public <P> void forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        start local 2 // java.lang.Object parameter
         0: .line 439
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure2.value:(Ljava/lang/Object;Ljava/lang/Object;)V
         1: .line 440
            return
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure2<-TT;-TP;>;
            0    2     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/procedure/Procedure2<-TT;-TP;>;TP;)V
    MethodParameters:
           Name  Flags
      procedure  
      parameter  

  public <S> org.eclipse.collections.api.bag.ImmutableBag<org.eclipse.collections.api.tuple.Pair<T, S>> zip(java.lang.Iterable<S>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // java.lang.Iterable that
         0: .line 449
            aload 1 /* that */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 2 /* iterator */
        start local 2 // java.util.Iterator iterator
         1: .line 450
            aload 2 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         2: .line 452
            getstatic org.eclipse.collections.api.factory.Bags.immutable:Lorg/eclipse/collections/api/factory/bag/ImmutableBagFactory;
            invokeinterface org.eclipse.collections.api.factory.bag.ImmutableBagFactory.empty:()Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
         3: .line 454
      StackMap locals: java.util.Iterator
      StackMap stack:
            getstatic org.eclipse.collections.api.factory.Bags.immutable:Lorg/eclipse/collections/api/factory/bag/ImmutableBagFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            aload 2 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.tuple.Tuples.pair:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Pair;
            invokeinterface org.eclipse.collections.api.factory.bag.ImmutableBagFactory.with:(Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
        end local 2 // java.util.Iterator iterator
        end local 1 // java.lang.Iterable that
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    4     1      that  Ljava/lang/Iterable<TS;>;
            1    4     2  iterator  Ljava/util/Iterator<TS;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Iterable<TS;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<Lorg/eclipse/collections/api/tuple/Pair<TT;TS;>;>;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      that  

  public org.eclipse.collections.api.set.ImmutableSet<org.eclipse.collections.api.tuple.Pair<T, java.lang.Integer>> zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 464
            getstatic org.eclipse.collections.api.factory.Sets.immutable:Lorg/eclipse/collections/api/factory/set/ImmutableSetFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokestatic org.eclipse.collections.impl.tuple.Tuples.pair:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Pair;
            invokeinterface org.eclipse.collections.api.factory.set.ImmutableSetFactory.with:(Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/ImmutableSet<Lorg/eclipse/collections/api/tuple/Pair<TT;Ljava/lang/Integer;>;>;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  public java.util.Iterator<T> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 470
            new org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag$SingletonIterator
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag$SingletonIterator.<init>:(Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag;)V
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
    Signature: ()Ljava/util/Iterator<TT;>;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
        start local 1 // java.lang.Object obj
         0: .line 505
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 507
            iconst_1
            ireturn
         2: .line 509
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof org.eclipse.collections.api.bag.Bag
            ifne 4
         3: .line 511
            iconst_0
            ireturn
         4: .line 513
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.eclipse.collections.api.bag.Bag
            astore 2 /* bag */
        start local 2 // org.eclipse.collections.api.bag.Bag bag
         5: .line 514
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.size:()I
            aload 2 /* bag */
            invokeinterface org.eclipse.collections.api.bag.Bag.size:()I
            if_icmpeq 7
         6: .line 516
            iconst_0
            ireturn
         7: .line 518
      StackMap locals: org.eclipse.collections.api.bag.Bag
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.occurrencesOf:(Ljava/lang/Object;)I
            aload 2 /* bag */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.bag.Bag.occurrencesOf:(Ljava/lang/Object;)I
            if_icmpne 8
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         8: iconst_0
            ireturn
        end local 2 // org.eclipse.collections.api.bag.Bag bag
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
            0    9     1   obj  Ljava/lang/Object;
            5    9     2   bag  Lorg/eclipse/collections/api/bag/Bag<*>;
    MethodParameters:
      Name  Flags
      obj   

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 524
            new java.lang.StringBuilder
            dup
            bipush 91
            invokestatic java.lang.String.valueOf:(C)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.makeString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            bipush 93
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 530
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            ifnonnull 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals:
      StackMap stack: int
         2: iconst_1
            ixor
            ireturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;

  private java.lang.Object writeReplace();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 535
            new org.eclipse.collections.impl.bag.immutable.ImmutableBagSerializationProxy
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.bag.immutable.ImmutableBagSerializationProxy.<init>:(Lorg/eclipse/collections/api/bag/UnsortedBag;)V
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;

  public org.eclipse.collections.api.set.ImmutableSet<T> selectUnique();
    descriptor: ()Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
         0: .line 541
            getstatic org.eclipse.collections.api.factory.Sets.immutable:Lorg/eclipse/collections/api/factory/set/ImmutableSetFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.value:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.factory.set.ImmutableSetFactory.of:(Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableSingletonBag<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;

  public org.eclipse.collections.api.set.SetIterable selectUnique();
    descriptor: ()Lorg/eclipse/collections/api/set/SetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.selectUnique:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.UnsortedSetIterable selectUnique();
    descriptor: ()Lorg/eclipse/collections/api/set/UnsortedSetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.selectUnique:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.ImmutableSetIterable selectUnique();
    descriptor: ()Lorg/eclipse/collections/api/set/ImmutableSetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.selectUnique:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable collectIf(org.eclipse.collections.api.block.predicate.Predicate, org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.UnsortedBag collectIf(org.eclipse.collections.api.block.predicate.Predicate, org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/UnsortedBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection collectIf(org.eclipse.collections.api.block.predicate.Predicate, org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.ImmutableBagIterable toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/bag/ImmutableBagIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.toImmutable:()Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection newWithout(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.newWithout:(Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.zipWithIndex:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.SetIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/set/SetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.zipWithIndex:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.UnsortedSetIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/set/UnsortedSetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.zipWithIndex:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/collection/ImmutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.zipWithIndex:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.ImmutableSetIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/set/ImmutableSetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.zipWithIndex:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable zip(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.UnsortedBag zip(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/UnsortedBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection zip(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.MapIterable toMapOfItemToCount();
    descriptor: ()Lorg/eclipse/collections/api/map/MapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.toMapOfItemToCount:()Lorg/eclipse/collections/api/map/MutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.MutableMapIterable toMapOfItemToCount();
    descriptor: ()Lorg/eclipse/collections/api/map/MutableMapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.toMapOfItemToCount:()Lorg/eclipse/collections/api/map/MutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.UnsortedBag flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/UnsortedBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection newWithAll(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.newWithAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag selectByOccurrences(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.selectByOccurrences:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.UnsortedBag selectByOccurrences(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/UnsortedBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.selectByOccurrences:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.ImmutableBagIterable selectByOccurrences(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/ImmutableBagIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.selectByOccurrences:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection newWith(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.newWith:(Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.UnsortedBag reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/UnsortedBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.ImmutableBagIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBagIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.Multimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.bag.BagMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/BagMultimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.bag.UnsortedBagMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/UnsortedBagMultimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.ImmutableMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/ImmutableMultimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.bag.ImmutableBagIterableMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagIterableMultimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.UnsortedBag select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/UnsortedBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.ImmutableBagIterable select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBagIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.Multimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.bag.BagMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/BagMultimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.bag.UnsortedBagMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/UnsortedBagMultimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.ImmutableMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/ImmutableMultimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.bag.ImmutableBagIterableMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagIterableMultimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection newWithoutAll(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.newWithoutAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Class
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Class
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.UnsortedBag selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/UnsortedBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Class
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Class
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.ImmutableBagIterable selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/ImmutableBagIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Class
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.UnsortedBag collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/UnsortedBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Lorg/eclipse/collections/impl/bag/immutable/AbstractImmutableBag<TT;>;Ljava/io/Serializable;
SourceFile: "ImmutableSingletonBag.java"
NestMembers:
  org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag$SingletonIterator
InnerClasses:
  private SingletonIterator = org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag$SingletonIterator of org.eclipse.collections.impl.bag.immutable.ImmutableSingletonBag