class com.mongodb.async.client.MappingIterable<U, V> implements com.mongodb.async.client.MongoIterable<V>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.mongodb.async.client.MappingIterable
  super_class: java.lang.Object
{
  private final com.mongodb.async.client.MongoIterable<U> iterable;
    descriptor: Lcom/mongodb/async/client/MongoIterable;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/mongodb/async/client/MongoIterable<TU;>;

  private final com.mongodb.Function<U, V> mapper;
    descriptor: Lcom/mongodb/Function;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/mongodb/Function<TU;TV;>;

  void <init>(com.mongodb.async.client.MongoIterable<U>, com.mongodb.Function<U, V>);
    descriptor: (Lcom/mongodb/async/client/MongoIterable;Lcom/mongodb/Function;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.mongodb.async.client.MappingIterable this
        start local 1 // com.mongodb.async.client.MongoIterable iterable
        start local 2 // com.mongodb.Function mapper
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 0 /* this */
            ldc "iterable"
            aload 1 /* iterable */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.mongodb.async.client.MongoIterable
            putfield com.mongodb.async.client.MappingIterable.iterable:Lcom/mongodb/async/client/MongoIterable;
         2: .line 34
            aload 0 /* this */
            ldc "mapper"
            aload 2 /* mapper */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.mongodb.Function
            putfield com.mongodb.async.client.MappingIterable.mapper:Lcom/mongodb/Function;
         3: .line 35
            return
        end local 2 // com.mongodb.Function mapper
        end local 1 // com.mongodb.async.client.MongoIterable iterable
        end local 0 // com.mongodb.async.client.MappingIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/mongodb/async/client/MappingIterable<TU;TV;>;
            0    4     1  iterable  Lcom/mongodb/async/client/MongoIterable<TU;>;
            0    4     2    mapper  Lcom/mongodb/Function<TU;TV;>;
    Signature: (Lcom/mongodb/async/client/MongoIterable<TU;>;Lcom/mongodb/Function<TU;TV;>;)V
    MethodParameters:
          Name  Flags
      iterable  final
      mapper    final

  public void first(com.mongodb.async.SingleResultCallback<V>);
    descriptor: (Lcom/mongodb/async/SingleResultCallback;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.mongodb.async.client.MappingIterable this
        start local 1 // com.mongodb.async.SingleResultCallback callback
         0: .line 39
            ldc "callback"
            aload 1 /* callback */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 40
            aload 0 /* this */
            getfield com.mongodb.async.client.MappingIterable.iterable:Lcom/mongodb/async/client/MongoIterable;
            new com.mongodb.async.client.MappingIterable$1
            dup
            aload 0 /* this */
            aload 1 /* callback */
            invokespecial com.mongodb.async.client.MappingIterable$1.<init>:(Lcom/mongodb/async/client/MappingIterable;Lcom/mongodb/async/SingleResultCallback;)V
            invokeinterface com.mongodb.async.client.MongoIterable.first:(Lcom/mongodb/async/SingleResultCallback;)V
         2: .line 52
            return
        end local 1 // com.mongodb.async.SingleResultCallback callback
        end local 0 // com.mongodb.async.client.MappingIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lcom/mongodb/async/client/MappingIterable<TU;TV;>;
            0    3     1  callback  Lcom/mongodb/async/SingleResultCallback<TV;>;
    Signature: (Lcom/mongodb/async/SingleResultCallback<TV;>;)V
    MethodParameters:
          Name  Flags
      callback  final

  public void forEach(com.mongodb.Block<? super V>, com.mongodb.async.SingleResultCallback<java.lang.Void>);
    descriptor: (Lcom/mongodb/Block;Lcom/mongodb/async/SingleResultCallback;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // com.mongodb.async.client.MappingIterable this
        start local 1 // com.mongodb.Block block
        start local 2 // com.mongodb.async.SingleResultCallback callback
         0: .line 56
            ldc "block"
            aload 1 /* block */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 57
            ldc "callback"
            aload 2 /* callback */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 58
            aload 0 /* this */
            getfield com.mongodb.async.client.MappingIterable.iterable:Lcom/mongodb/async/client/MongoIterable;
            new com.mongodb.async.client.MappingIterable$2
            dup
            aload 0 /* this */
            aload 1 /* block */
            invokespecial com.mongodb.async.client.MappingIterable$2.<init>:(Lcom/mongodb/async/client/MappingIterable;Lcom/mongodb/Block;)V
         3: .line 63
            new com.mongodb.async.client.MappingIterable$3
            dup
            aload 0 /* this */
            aload 2 /* callback */
            invokespecial com.mongodb.async.client.MappingIterable$3.<init>:(Lcom/mongodb/async/client/MappingIterable;Lcom/mongodb/async/SingleResultCallback;)V
         4: .line 58
            invokeinterface com.mongodb.async.client.MongoIterable.forEach:(Lcom/mongodb/Block;Lcom/mongodb/async/SingleResultCallback;)V
         5: .line 73
            return
        end local 2 // com.mongodb.async.SingleResultCallback callback
        end local 1 // com.mongodb.Block block
        end local 0 // com.mongodb.async.client.MappingIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lcom/mongodb/async/client/MappingIterable<TU;TV;>;
            0    6     1     block  Lcom/mongodb/Block<-TV;>;
            0    6     2  callback  Lcom/mongodb/async/SingleResultCallback<Ljava/lang/Void;>;
    Signature: (Lcom/mongodb/Block<-TV;>;Lcom/mongodb/async/SingleResultCallback<Ljava/lang/Void;>;)V
    MethodParameters:
          Name  Flags
      block     final
      callback  final

  public <A extends java.util.Collection<? super V>> void into(A, com.mongodb.async.SingleResultCallback<A>);
    descriptor: (Ljava/util/Collection;Lcom/mongodb/async/SingleResultCallback;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=3
        start local 0 // com.mongodb.async.client.MappingIterable this
        start local 1 // java.util.Collection target
        start local 2 // com.mongodb.async.SingleResultCallback callback
         0: .line 77
            ldc "target"
            aload 1 /* target */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 78
            ldc "callback"
            aload 2 /* callback */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 79
            aload 0 /* this */
            getfield com.mongodb.async.client.MappingIterable.iterable:Lcom/mongodb/async/client/MongoIterable;
            new com.mongodb.async.client.MappingIterable$4
            dup
            aload 0 /* this */
            aload 1 /* target */
            invokespecial com.mongodb.async.client.MappingIterable$4.<init>:(Lcom/mongodb/async/client/MappingIterable;Ljava/util/Collection;)V
         3: .line 84
            new com.mongodb.async.client.MappingIterable$5
            dup
            aload 0 /* this */
            aload 2 /* callback */
            aload 1 /* target */
            invokespecial com.mongodb.async.client.MappingIterable$5.<init>:(Lcom/mongodb/async/client/MappingIterable;Lcom/mongodb/async/SingleResultCallback;Ljava/util/Collection;)V
         4: .line 79
            invokeinterface com.mongodb.async.client.MongoIterable.forEach:(Lcom/mongodb/Block;Lcom/mongodb/async/SingleResultCallback;)V
         5: .line 94
            return
        end local 2 // com.mongodb.async.SingleResultCallback callback
        end local 1 // java.util.Collection target
        end local 0 // com.mongodb.async.client.MappingIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lcom/mongodb/async/client/MappingIterable<TU;TV;>;
            0    6     1    target  TA;
            0    6     2  callback  Lcom/mongodb/async/SingleResultCallback<TA;>;
    Signature: <A::Ljava/util/Collection<-TV;>;>(TA;Lcom/mongodb/async/SingleResultCallback<TA;>;)V
    MethodParameters:
          Name  Flags
      target    final
      callback  final

  public <W> com.mongodb.async.client.MongoIterable<W> map(com.mongodb.Function<V, W>);
    descriptor: (Lcom/mongodb/Function;)Lcom/mongodb/async/client/MongoIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.mongodb.async.client.MappingIterable this
        start local 1 // com.mongodb.Function mapper
         0: .line 98
            new com.mongodb.async.client.MappingIterable
            dup
            aload 0 /* this */
            aload 1 /* mapper */
            invokespecial com.mongodb.async.client.MappingIterable.<init>:(Lcom/mongodb/async/client/MongoIterable;Lcom/mongodb/Function;)V
            areturn
        end local 1 // com.mongodb.Function mapper
        end local 0 // com.mongodb.async.client.MappingIterable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/mongodb/async/client/MappingIterable<TU;TV;>;
            0    1     1  mapper  Lcom/mongodb/Function<TV;TW;>;
    Signature: <W:Ljava/lang/Object;>(Lcom/mongodb/Function<TV;TW;>;)Lcom/mongodb/async/client/MongoIterable<TW;>;
    MethodParameters:
        Name  Flags
      mapper  final

  public com.mongodb.async.client.MongoIterable<V> batchSize(int);
    descriptor: (I)Lcom/mongodb/async/client/MongoIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.async.client.MappingIterable this
        start local 1 // int batchSize
         0: .line 103
            aload 0 /* this */
            getfield com.mongodb.async.client.MappingIterable.iterable:Lcom/mongodb/async/client/MongoIterable;
            iload 1 /* batchSize */
            invokeinterface com.mongodb.async.client.MongoIterable.batchSize:(I)Lcom/mongodb/async/client/MongoIterable;
            pop
         1: .line 104
            aload 0 /* this */
            areturn
        end local 1 // int batchSize
        end local 0 // com.mongodb.async.client.MappingIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/mongodb/async/client/MappingIterable<TU;TV;>;
            0    2     1  batchSize  I
    Signature: (I)Lcom/mongodb/async/client/MongoIterable<TV;>;
    MethodParameters:
           Name  Flags
      batchSize  final

  public java.lang.Integer getBatchSize();
    descriptor: ()Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.async.client.MappingIterable this
         0: .line 109
            aload 0 /* this */
            getfield com.mongodb.async.client.MappingIterable.iterable:Lcom/mongodb/async/client/MongoIterable;
            invokeinterface com.mongodb.async.client.MongoIterable.getBatchSize:()Ljava/lang/Integer;
            areturn
        end local 0 // com.mongodb.async.client.MappingIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/async/client/MappingIterable<TU;TV;>;

  public void batchCursor(com.mongodb.async.SingleResultCallback<com.mongodb.async.AsyncBatchCursor<V>>);
    descriptor: (Lcom/mongodb/async/SingleResultCallback;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.mongodb.async.client.MappingIterable this
        start local 1 // com.mongodb.async.SingleResultCallback callback
         0: .line 114
            ldc "callback"
            aload 1 /* callback */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 115
            aload 0 /* this */
            getfield com.mongodb.async.client.MappingIterable.iterable:Lcom/mongodb/async/client/MongoIterable;
            new com.mongodb.async.client.MappingIterable$6
            dup
            aload 0 /* this */
            aload 1 /* callback */
            invokespecial com.mongodb.async.client.MappingIterable$6.<init>:(Lcom/mongodb/async/client/MappingIterable;Lcom/mongodb/async/SingleResultCallback;)V
            invokeinterface com.mongodb.async.client.MongoIterable.batchCursor:(Lcom/mongodb/async/SingleResultCallback;)V
         2: .line 125
            return
        end local 1 // com.mongodb.async.SingleResultCallback callback
        end local 0 // com.mongodb.async.client.MappingIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lcom/mongodb/async/client/MappingIterable<TU;TV;>;
            0    3     1  callback  Lcom/mongodb/async/SingleResultCallback<Lcom/mongodb/async/AsyncBatchCursor<TV;>;>;
    Signature: (Lcom/mongodb/async/SingleResultCallback<Lcom/mongodb/async/AsyncBatchCursor<TV;>;>;)V
    MethodParameters:
          Name  Flags
      callback  final

  com.mongodb.async.client.MongoIterable<U> getMapped();
    descriptor: ()Lcom/mongodb/async/client/MongoIterable;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.async.client.MappingIterable this
         0: .line 128
            aload 0 /* this */
            getfield com.mongodb.async.client.MappingIterable.iterable:Lcom/mongodb/async/client/MongoIterable;
            areturn
        end local 0 // com.mongodb.async.client.MappingIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/async/client/MappingIterable<TU;TV;>;
    Signature: ()Lcom/mongodb/async/client/MongoIterable<TU;>;
}
Signature: <U:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/lang/Object;Lcom/mongodb/async/client/MongoIterable<TV;>;
SourceFile: "MappingIterable.java"
NestMembers:
  com.mongodb.async.client.MappingIterable$1  com.mongodb.async.client.MappingIterable$2  com.mongodb.async.client.MappingIterable$3  com.mongodb.async.client.MappingIterable$4  com.mongodb.async.client.MappingIterable$5  com.mongodb.async.client.MappingIterable$6
InnerClasses:
  com.mongodb.async.client.MappingIterable$1
  com.mongodb.async.client.MappingIterable$2
  com.mongodb.async.client.MappingIterable$3
  com.mongodb.async.client.MappingIterable$4
  com.mongodb.async.client.MappingIterable$5
  com.mongodb.async.client.MappingIterable$6