public abstract class com.google.common.collect.FluentIterable<E> implements java.lang.Iterable<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.google.common.collect.FluentIterable
  super_class: java.lang.Object
{
  private final com.google.common.base.Optional<java.lang.Iterable<E>> iterableDelegate;
    descriptor: Lcom/google/common/base/Optional;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/google/common/base/Optional<Ljava/lang/Iterable<TE;>;>;

  protected void <init>();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.google.common.collect.FluentIterable this
         0: .line 118
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 119
            aload 0 /* this */
            invokestatic com.google.common.base.Optional.absent:()Lcom/google/common/base/Optional;
            putfield com.google.common.collect.FluentIterable.iterableDelegate:Lcom/google/common/base/Optional;
         2: .line 120
            return
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/collect/FluentIterable<TE;>;

  void <init>(java.lang.Iterable<E>);
    descriptor: (Ljava/lang/Iterable;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // java.lang.Iterable iterable
         0: .line 122
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 123
            aload 1 /* iterable */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 124
            aload 0 /* this */
            aload 0 /* this */
            aload 1 /* iterable */
            if_acmpeq 3
            aload 1 /* iterable */
            goto 4
      StackMap locals: com.google.common.collect.FluentIterable java.lang.Iterable
      StackMap stack: com.google.common.collect.FluentIterable
         3: aconst_null
      StackMap locals: com.google.common.collect.FluentIterable java.lang.Iterable
      StackMap stack: com.google.common.collect.FluentIterable java.lang.Iterable
         4: invokestatic com.google.common.base.Optional.fromNullable:(Ljava/lang/Object;)Lcom/google/common/base/Optional;
            putfield com.google.common.collect.FluentIterable.iterableDelegate:Lcom/google/common/base/Optional;
         5: .line 125
            return
        end local 1 // java.lang.Iterable iterable
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    6     1  iterable  Ljava/lang/Iterable<TE;>;
    Signature: (Ljava/lang/Iterable<TE;>;)V
    MethodParameters:
          Name  Flags
      iterable  

  private java.lang.Iterable<E> getDelegate();
    descriptor: ()Ljava/lang/Iterable;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.google.common.collect.FluentIterable this
         0: .line 128
            aload 0 /* this */
            getfield com.google.common.collect.FluentIterable.iterableDelegate:Lcom/google/common/base/Optional;
            aload 0 /* this */
            invokevirtual com.google.common.base.Optional.or:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Iterable
            areturn
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/FluentIterable<TE;>;
    Signature: ()Ljava/lang/Iterable<TE;>;

  public static <E> com.google.common.collect.FluentIterable<E> from(java.lang.Iterable<E>);
    descriptor: (Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // java.lang.Iterable iterable
         0: .line 139
            aload 0 /* iterable */
            instanceof com.google.common.collect.FluentIterable
            ifeq 2
         1: .line 140
            aload 0 /* iterable */
            checkcast com.google.common.collect.FluentIterable
            goto 3
         2: .line 141
      StackMap locals:
      StackMap stack:
            new com.google.common.collect.FluentIterable$1
            dup
            aload 0 /* iterable */
            aload 0 /* iterable */
            invokespecial com.google.common.collect.FluentIterable$1.<init>:(Ljava/lang/Iterable;Ljava/lang/Iterable;)V
         3: .line 139
      StackMap locals:
      StackMap stack: com.google.common.collect.FluentIterable
            areturn
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0  iterable  Ljava/lang/Iterable<TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/lang/Iterable<TE;>;)Lcom/google/common/collect/FluentIterable<TE;>;
    MethodParameters:
          Name  Flags
      iterable  final

  public static <E> com.google.common.collect.FluentIterable<E> from(E[]);
    descriptor: ([Ljava/lang/Object;)Lcom/google/common/collect/FluentIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.lang.Object[] elements
         0: .line 161
            aload 0 /* elements */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokestatic com.google.common.collect.FluentIterable.from:(Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
            areturn
        end local 0 // java.lang.Object[] elements
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  elements  [Ljava/lang/Object;
    Signature: <E:Ljava/lang/Object;>([TE;)Lcom/google/common/collect/FluentIterable<TE;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
    MethodParameters:
          Name  Flags
      elements  

  public static <E> com.google.common.collect.FluentIterable<E> from(com.google.common.collect.FluentIterable<E>);
    descriptor: (Lcom/google/common/collect/FluentIterable;)Lcom/google/common/collect/FluentIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.FluentIterable iterable
         0: .line 174
            aload 0 /* iterable */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.google.common.collect.FluentIterable
            areturn
        end local 0 // com.google.common.collect.FluentIterable iterable
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  iterable  Lcom/google/common/collect/FluentIterable<TE;>;
    Signature: <E:Ljava/lang/Object;>(Lcom/google/common/collect/FluentIterable<TE;>;)Lcom/google/common/collect/FluentIterable<TE;>;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
          Name  Flags
      iterable  

  public static <T> com.google.common.collect.FluentIterable<T> concat(java.lang.Iterable<? extends T>, java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Iterable a
        start local 1 // java.lang.Iterable b
         0: .line 191
            iconst_2
            anewarray java.lang.Iterable
            dup
            iconst_0
            aload 0 /* a */
            aastore
            dup
            iconst_1
            aload 1 /* b */
            aastore
            invokestatic com.google.common.collect.FluentIterable.concatNoDefensiveCopy:([Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
            areturn
        end local 1 // java.lang.Iterable b
        end local 0 // java.lang.Iterable a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     a  Ljava/lang/Iterable<+TT;>;
            0    1     1     b  Ljava/lang/Iterable<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+TT;>;Ljava/lang/Iterable<+TT;>;)Lcom/google/common/collect/FluentIterable<TT;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
    MethodParameters:
      Name  Flags
      a     
      b     

  public static <T> com.google.common.collect.FluentIterable<T> concat(java.lang.Iterable<? extends T>, java.lang.Iterable<? extends T>, java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;Ljava/lang/Iterable;Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // java.lang.Iterable a
        start local 1 // java.lang.Iterable b
        start local 2 // java.lang.Iterable c
         0: .line 210
            iconst_3
            anewarray java.lang.Iterable
            dup
            iconst_0
            aload 0 /* a */
            aastore
            dup
            iconst_1
            aload 1 /* b */
            aastore
            dup
            iconst_2
            aload 2 /* c */
            aastore
            invokestatic com.google.common.collect.FluentIterable.concatNoDefensiveCopy:([Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
            areturn
        end local 2 // java.lang.Iterable c
        end local 1 // java.lang.Iterable b
        end local 0 // java.lang.Iterable a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     a  Ljava/lang/Iterable<+TT;>;
            0    1     1     b  Ljava/lang/Iterable<+TT;>;
            0    1     2     c  Ljava/lang/Iterable<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+TT;>;Ljava/lang/Iterable<+TT;>;Ljava/lang/Iterable<+TT;>;)Lcom/google/common/collect/FluentIterable<TT;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
    MethodParameters:
      Name  Flags
      a     
      b     
      c     

  public static <T> com.google.common.collect.FluentIterable<T> concat(java.lang.Iterable<? extends T>, java.lang.Iterable<? extends T>, java.lang.Iterable<? extends T>, java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;Ljava/lang/Iterable;Ljava/lang/Iterable;Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // java.lang.Iterable a
        start local 1 // java.lang.Iterable b
        start local 2 // java.lang.Iterable c
        start local 3 // java.lang.Iterable d
         0: .line 233
            iconst_4
            anewarray java.lang.Iterable
            dup
            iconst_0
            aload 0 /* a */
            aastore
            dup
            iconst_1
            aload 1 /* b */
            aastore
            dup
            iconst_2
            aload 2 /* c */
            aastore
            dup
            iconst_3
            aload 3 /* d */
            aastore
            invokestatic com.google.common.collect.FluentIterable.concatNoDefensiveCopy:([Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
            areturn
        end local 3 // java.lang.Iterable d
        end local 2 // java.lang.Iterable c
        end local 1 // java.lang.Iterable b
        end local 0 // java.lang.Iterable a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     a  Ljava/lang/Iterable<+TT;>;
            0    1     1     b  Ljava/lang/Iterable<+TT;>;
            0    1     2     c  Ljava/lang/Iterable<+TT;>;
            0    1     3     d  Ljava/lang/Iterable<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+TT;>;Ljava/lang/Iterable<+TT;>;Ljava/lang/Iterable<+TT;>;Ljava/lang/Iterable<+TT;>;)Lcom/google/common/collect/FluentIterable<TT;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
    MethodParameters:
      Name  Flags
      a     
      b     
      c     
      d     

  public static <T> com.google.common.collect.FluentIterable<T> concat(java.lang.Iterable<? extends T>[]);
    descriptor: ([Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.Iterable[] inputs
         0: .line 253
            aload 0 /* inputs */
            aload 0 /* inputs */
            arraylength
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
            checkcast java.lang.Iterable[]
            invokestatic com.google.common.collect.FluentIterable.concatNoDefensiveCopy:([Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
            areturn
        end local 0 // java.lang.Iterable[] inputs
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  inputs  [Ljava/lang/Iterable;
    Signature: <T:Ljava/lang/Object;>([Ljava/lang/Iterable<+TT;>;)Lcom/google/common/collect/FluentIterable<TT;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
    MethodParameters:
        Name  Flags
      inputs  

  public static <T> com.google.common.collect.FluentIterable<T> concat(java.lang.Iterable<? extends java.lang.Iterable<? extends T>>);
    descriptor: (Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Iterable inputs
         0: .line 273
            aload 0 /* inputs */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 274
            new com.google.common.collect.FluentIterable$2
            dup
            aload 0 /* inputs */
            invokespecial com.google.common.collect.FluentIterable$2.<init>:(Ljava/lang/Iterable;)V
            areturn
        end local 0 // java.lang.Iterable inputs
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0  inputs  Ljava/lang/Iterable<+Ljava/lang/Iterable<+TT;>;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+Ljava/lang/Iterable<+TT;>;>;)Lcom/google/common/collect/FluentIterable<TT;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
    MethodParameters:
        Name  Flags
      inputs  final

  private static <T> com.google.common.collect.FluentIterable<T> concatNoDefensiveCopy(java.lang.Iterable<? extends T>[]);
    descriptor: ([Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
    flags: (0x008a) ACC_PRIVATE, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // java.lang.Iterable[] inputs
         0: .line 285
            aload 0 /* inputs */
            dup
            astore 4
            arraylength
            istore 3
            iconst_0
            istore 2
            goto 4
      StackMap locals: java.lang.Iterable[] top int int java.lang.Iterable[]
      StackMap stack:
         1: aload 4
            iload 2
            aaload
            astore 1 /* input */
        start local 1 // java.lang.Iterable input
         2: .line 286
            aload 1 /* input */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 1 // java.lang.Iterable input
         3: .line 285
            iinc 2 1
      StackMap locals:
      StackMap stack:
         4: iload 2
            iload 3
            if_icmplt 1
         5: .line 288
            new com.google.common.collect.FluentIterable$3
            dup
            aload 0 /* inputs */
            invokespecial com.google.common.collect.FluentIterable$3.<init>:([Ljava/lang/Iterable;)V
            areturn
        end local 0 // java.lang.Iterable[] inputs
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0  inputs  [Ljava/lang/Iterable;
            2    3     1   input  Ljava/lang/Iterable<+TT;>;
    Signature: <T:Ljava/lang/Object;>([Ljava/lang/Iterable<+TT;>;)Lcom/google/common/collect/FluentIterable<TT;>;
    MethodParameters:
        Name  Flags
      inputs  final

  public static <E> com.google.common.collect.FluentIterable<E> of();
    descriptor: ()Lcom/google/common/collect/FluentIterable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 312
            invokestatic com.google.common.collect.ImmutableList.of:()Lcom/google/common/collect/ImmutableList;
            invokestatic com.google.common.collect.FluentIterable.from:(Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <E:Ljava/lang/Object;>()Lcom/google/common/collect/FluentIterable<TE;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()

  public static <E> com.google.common.collect.FluentIterable<E> of(E, E[]);
    descriptor: (Ljava/lang/Object;[Ljava/lang/Object;)Lcom/google/common/collect/FluentIterable;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.lang.Object element
        start local 1 // java.lang.Object[] elements
         0: .line 325
            aload 0 /* element */
            aload 1 /* elements */
            invokestatic com.google.common.collect.Lists.asList:(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/util/List;
            invokestatic com.google.common.collect.FluentIterable.from:(Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
            areturn
        end local 1 // java.lang.Object[] elements
        end local 0 // java.lang.Object element
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0   element  TE;
            0    1     1  elements  [Ljava/lang/Object;
    Signature: <E:Ljava/lang/Object;>(TE;[TE;)Lcom/google/common/collect/FluentIterable<TE;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
          Name  Flags
      element   
      elements  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.FluentIterable this
         0: .line 337
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            invokestatic com.google.common.collect.Iterables.toString:(Ljava/lang/Iterable;)Ljava/lang/String;
            areturn
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/FluentIterable<TE;>;

  public final int size();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.FluentIterable this
         0: .line 346
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            invokestatic com.google.common.collect.Iterables.size:(Ljava/lang/Iterable;)I
            ireturn
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/FluentIterable<TE;>;

  public final boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // java.lang.Object target
         0: .line 356
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            aload 1 /* target */
            invokestatic com.google.common.collect.Iterables.contains:(Ljava/lang/Iterable;Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object target
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  target  Ljava/lang/Object;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
        Name  Flags
      target  

  public final com.google.common.collect.FluentIterable<E> cycle();
    descriptor: ()Lcom/google/common/collect/FluentIterable;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.FluentIterable this
         0: .line 377
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            invokestatic com.google.common.collect.Iterables.cycle:(Ljava/lang/Iterable;)Ljava/lang/Iterable;
            invokestatic com.google.common.collect.FluentIterable.from:(Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
            areturn
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/FluentIterable<TE;>;
    Signature: ()Lcom/google/common/collect/FluentIterable<TE;>;

  public final com.google.common.collect.FluentIterable<E> append(java.lang.Iterable<? extends E>);
    descriptor: (Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // java.lang.Iterable other
         0: .line 393
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            aload 1 /* other */
            invokestatic com.google.common.collect.FluentIterable.concat:(Ljava/lang/Iterable;Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
            areturn
        end local 1 // java.lang.Iterable other
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  other  Ljava/lang/Iterable<+TE;>;
    Signature: (Ljava/lang/Iterable<+TE;>;)Lcom/google/common/collect/FluentIterable<TE;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
    MethodParameters:
       Name  Flags
      other  

  public final com.google.common.collect.FluentIterable<E> append(E[]);
    descriptor: ([Ljava/lang/Object;)Lcom/google/common/collect/FluentIterable;
    flags: (0x0091) ACC_PUBLIC, ACC_FINAL, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // java.lang.Object[] elements
         0: .line 406
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            aload 1 /* elements */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokestatic com.google.common.collect.FluentIterable.concat:(Ljava/lang/Iterable;Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
            areturn
        end local 1 // java.lang.Object[] elements
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  elements  [Ljava/lang/Object;
    Signature: ([TE;)Lcom/google/common/collect/FluentIterable<TE;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
    MethodParameters:
          Name  Flags
      elements  

  public final com.google.common.collect.FluentIterable<E> filter(com.google.common.base.Predicate<? super E>);
    descriptor: (Lcom/google/common/base/Predicate;)Lcom/google/common/collect/FluentIterable;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // com.google.common.base.Predicate predicate
         0: .line 416
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            aload 1 /* predicate */
            invokestatic com.google.common.collect.Iterables.filter:(Ljava/lang/Iterable;Lcom/google/common/base/Predicate;)Ljava/lang/Iterable;
            invokestatic com.google.common.collect.FluentIterable.from:(Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
            areturn
        end local 1 // com.google.common.base.Predicate predicate
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  predicate  Lcom/google/common/base/Predicate<-TE;>;
    Signature: (Lcom/google/common/base/Predicate<-TE;>;)Lcom/google/common/collect/FluentIterable<TE;>;
    MethodParameters:
           Name  Flags
      predicate  

  public final <T> com.google.common.collect.FluentIterable<T> filter(java.lang.Class<T>);
    descriptor: (Ljava/lang/Class;)Lcom/google/common/collect/FluentIterable;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // java.lang.Class type
         0: .line 434
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            aload 1 /* type */
            invokestatic com.google.common.collect.Iterables.filter:(Ljava/lang/Iterable;Ljava/lang/Class;)Ljava/lang/Iterable;
            invokestatic com.google.common.collect.FluentIterable.from:(Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
            areturn
        end local 1 // java.lang.Class type
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  type  Ljava/lang/Class<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Class<TT;>;)Lcom/google/common/collect/FluentIterable<TT;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()
    MethodParameters:
      Name  Flags
      type  

  public final boolean anyMatch(com.google.common.base.Predicate<? super E>);
    descriptor: (Lcom/google/common/base/Predicate;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // com.google.common.base.Predicate predicate
         0: .line 443
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            aload 1 /* predicate */
            invokestatic com.google.common.collect.Iterables.any:(Ljava/lang/Iterable;Lcom/google/common/base/Predicate;)Z
            ireturn
        end local 1 // com.google.common.base.Predicate predicate
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  predicate  Lcom/google/common/base/Predicate<-TE;>;
    Signature: (Lcom/google/common/base/Predicate<-TE;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public final boolean allMatch(com.google.common.base.Predicate<? super E>);
    descriptor: (Lcom/google/common/base/Predicate;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // com.google.common.base.Predicate predicate
         0: .line 453
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            aload 1 /* predicate */
            invokestatic com.google.common.collect.Iterables.all:(Ljava/lang/Iterable;Lcom/google/common/base/Predicate;)Z
            ireturn
        end local 1 // com.google.common.base.Predicate predicate
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  predicate  Lcom/google/common/base/Predicate<-TE;>;
    Signature: (Lcom/google/common/base/Predicate<-TE;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public final com.google.common.base.Optional<E> firstMatch(com.google.common.base.Predicate<? super E>);
    descriptor: (Lcom/google/common/base/Predicate;)Lcom/google/common/base/Optional;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // com.google.common.base.Predicate predicate
         0: .line 466
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            aload 1 /* predicate */
            invokestatic com.google.common.collect.Iterables.tryFind:(Ljava/lang/Iterable;Lcom/google/common/base/Predicate;)Lcom/google/common/base/Optional;
            areturn
        end local 1 // com.google.common.base.Predicate predicate
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  predicate  Lcom/google/common/base/Predicate<-TE;>;
    Signature: (Lcom/google/common/base/Predicate<-TE;>;)Lcom/google/common/base/Optional<TE;>;
    MethodParameters:
           Name  Flags
      predicate  

  public final <T> com.google.common.collect.FluentIterable<T> transform(com.google.common.base.Function<? super E, T>);
    descriptor: (Lcom/google/common/base/Function;)Lcom/google/common/collect/FluentIterable;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // com.google.common.base.Function function
         0: .line 480
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            aload 1 /* function */
            invokestatic com.google.common.collect.Iterables.transform:(Ljava/lang/Iterable;Lcom/google/common/base/Function;)Ljava/lang/Iterable;
            invokestatic com.google.common.collect.FluentIterable.from:(Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
            areturn
        end local 1 // com.google.common.base.Function function
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  function  Lcom/google/common/base/Function<-TE;TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/google/common/base/Function<-TE;TT;>;)Lcom/google/common/collect/FluentIterable<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <T> com.google.common.collect.FluentIterable<T> transformAndConcat(com.google.common.base.Function<? super E, ? extends java.lang.Iterable<? extends T>>);
    descriptor: (Lcom/google/common/base/Function;)Lcom/google/common/collect/FluentIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // com.google.common.base.Function function
         0: .line 498
            aload 0 /* this */
            aload 1 /* function */
            invokevirtual com.google.common.collect.FluentIterable.transform:(Lcom/google/common/base/Function;)Lcom/google/common/collect/FluentIterable;
            invokestatic com.google.common.collect.FluentIterable.concat:(Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
            areturn
        end local 1 // com.google.common.base.Function function
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  function  Lcom/google/common/base/Function<-TE;+Ljava/lang/Iterable<+TT;>;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/google/common/base/Function<-TE;+Ljava/lang/Iterable<+TT;>;>;)Lcom/google/common/collect/FluentIterable<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public final com.google.common.base.Optional<E> first();
    descriptor: ()Lcom/google/common/base/Optional;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // com.google.common.collect.FluentIterable this
         0: .line 512
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 1 /* iterator */
        start local 1 // java.util.Iterator iterator
         1: .line 513
            aload 1 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifeq 2
            aload 1 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokestatic com.google.common.base.Optional.of:(Ljava/lang/Object;)Lcom/google/common/base/Optional;
            goto 3
      StackMap locals: java.util.Iterator
      StackMap stack:
         2: invokestatic com.google.common.base.Optional.absent:()Lcom/google/common/base/Optional;
      StackMap locals:
      StackMap stack: com.google.common.base.Optional
         3: areturn
        end local 1 // java.util.Iterator iterator
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/google/common/collect/FluentIterable<TE;>;
            1    4     1  iterator  Ljava/util/Iterator<TE;>;
    Signature: ()Lcom/google/common/base/Optional<TE;>;

  public final com.google.common.base.Optional<E> last();
    descriptor: ()Lcom/google/common/base/Optional;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // com.google.common.collect.FluentIterable this
         0: .line 531
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            astore 1 /* iterable */
        start local 1 // java.lang.Iterable iterable
         1: .line 532
            aload 1 /* iterable */
            instanceof java.util.List
            ifeq 6
         2: .line 533
            aload 1 /* iterable */
            checkcast java.util.List
            astore 2 /* list */
        start local 2 // java.util.List list
         3: .line 534
            aload 2 /* list */
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 5
         4: .line 535
            invokestatic com.google.common.base.Optional.absent:()Lcom/google/common/base/Optional;
            areturn
         5: .line 537
      StackMap locals: java.lang.Iterable java.util.List
      StackMap stack:
            aload 2 /* list */
            aload 2 /* list */
            invokeinterface java.util.List.size:()I
            iconst_1
            isub
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            invokestatic com.google.common.base.Optional.of:(Ljava/lang/Object;)Lcom/google/common/base/Optional;
            areturn
        end local 2 // java.util.List list
         6: .line 539
      StackMap locals:
      StackMap stack:
            aload 1 /* iterable */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 2 /* iterator */
        start local 2 // java.util.Iterator iterator
         7: .line 540
            aload 2 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 9
         8: .line 541
            invokestatic com.google.common.base.Optional.absent:()Lcom/google/common/base/Optional;
            areturn
         9: .line 548
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 1 /* iterable */
            instanceof java.util.SortedSet
            ifeq 12
        10: .line 549
            aload 1 /* iterable */
            checkcast java.util.SortedSet
            astore 3 /* sortedSet */
        start local 3 // java.util.SortedSet sortedSet
        11: .line 550
            aload 3 /* sortedSet */
            invokeinterface java.util.SortedSet.last:()Ljava/lang/Object;
            invokestatic com.google.common.base.Optional.of:(Ljava/lang/Object;)Lcom/google/common/base/Optional;
            areturn
        end local 3 // java.util.SortedSet sortedSet
        12: .line 554
      StackMap locals:
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 3 /* current */
        start local 3 // java.lang.Object current
        13: .line 555
            aload 2 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 12
        14: .line 556
            aload 3 /* current */
            invokestatic com.google.common.base.Optional.of:(Ljava/lang/Object;)Lcom/google/common/base/Optional;
            areturn
        end local 3 // java.lang.Object current
        end local 2 // java.util.Iterator iterator
        end local 1 // java.lang.Iterable iterable
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   15     0       this  Lcom/google/common/collect/FluentIterable<TE;>;
            1   15     1   iterable  Ljava/lang/Iterable<TE;>;
            3    6     2       list  Ljava/util/List<TE;>;
            7   15     2   iterator  Ljava/util/Iterator<TE;>;
           11   12     3  sortedSet  Ljava/util/SortedSet<TE;>;
           13   15     3    current  TE;
    Signature: ()Lcom/google/common/base/Optional<TE;>;

  public final com.google.common.collect.FluentIterable<E> skip(int);
    descriptor: (I)Lcom/google/common/collect/FluentIterable;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // int numberToSkip
         0: .line 579
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            iload 1 /* numberToSkip */
            invokestatic com.google.common.collect.Iterables.skip:(Ljava/lang/Iterable;I)Ljava/lang/Iterable;
            invokestatic com.google.common.collect.FluentIterable.from:(Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
            areturn
        end local 1 // int numberToSkip
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  numberToSkip  I
    Signature: (I)Lcom/google/common/collect/FluentIterable<TE;>;
    MethodParameters:
              Name  Flags
      numberToSkip  

  public final com.google.common.collect.FluentIterable<E> limit(int);
    descriptor: (I)Lcom/google/common/collect/FluentIterable;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // int maxSize
         0: .line 594
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            iload 1 /* maxSize */
            invokestatic com.google.common.collect.Iterables.limit:(Ljava/lang/Iterable;I)Ljava/lang/Iterable;
            invokestatic com.google.common.collect.FluentIterable.from:(Ljava/lang/Iterable;)Lcom/google/common/collect/FluentIterable;
            areturn
        end local 1 // int maxSize
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  maxSize  I
    Signature: (I)Lcom/google/common/collect/FluentIterable<TE;>;
    MethodParameters:
         Name  Flags
      maxSize  

  public final boolean isEmpty();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.FluentIterable this
         0: .line 603
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            invokeinterface java.util.Iterator.hasNext:()Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/collect/FluentIterable<TE;>;

  public final com.google.common.collect.ImmutableList<E> toList();
    descriptor: ()Lcom/google/common/collect/ImmutableList;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.FluentIterable this
         0: .line 617
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            invokestatic com.google.common.collect.ImmutableList.copyOf:(Ljava/lang/Iterable;)Lcom/google/common/collect/ImmutableList;
            areturn
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/FluentIterable<TE;>;
    Signature: ()Lcom/google/common/collect/ImmutableList<TE;>;

  public final com.google.common.collect.ImmutableList<E> toSortedList(java.util.Comparator<? super E>);
    descriptor: (Ljava/util/Comparator;)Lcom/google/common/collect/ImmutableList;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // java.util.Comparator comparator
         0: .line 633
            aload 1 /* comparator */
            invokestatic com.google.common.collect.Ordering.from:(Ljava/util/Comparator;)Lcom/google/common/collect/Ordering;
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            invokevirtual com.google.common.collect.Ordering.immutableSortedCopy:(Ljava/lang/Iterable;)Lcom/google/common/collect/ImmutableList;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  comparator  Ljava/util/Comparator<-TE;>;
    Signature: (Ljava/util/Comparator<-TE;>;)Lcom/google/common/collect/ImmutableList<TE;>;
    MethodParameters:
            Name  Flags
      comparator  

  public final com.google.common.collect.ImmutableSet<E> toSet();
    descriptor: ()Lcom/google/common/collect/ImmutableSet;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.FluentIterable this
         0: .line 647
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            invokestatic com.google.common.collect.ImmutableSet.copyOf:(Ljava/lang/Iterable;)Lcom/google/common/collect/ImmutableSet;
            areturn
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/FluentIterable<TE;>;
    Signature: ()Lcom/google/common/collect/ImmutableSet<TE;>;

  public final com.google.common.collect.ImmutableSortedSet<E> toSortedSet(java.util.Comparator<? super E>);
    descriptor: (Ljava/util/Comparator;)Lcom/google/common/collect/ImmutableSortedSet;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // java.util.Comparator comparator
         0: .line 664
            aload 1 /* comparator */
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            invokestatic com.google.common.collect.ImmutableSortedSet.copyOf:(Ljava/util/Comparator;Ljava/lang/Iterable;)Lcom/google/common/collect/ImmutableSortedSet;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  comparator  Ljava/util/Comparator<-TE;>;
    Signature: (Ljava/util/Comparator<-TE;>;)Lcom/google/common/collect/ImmutableSortedSet<TE;>;
    MethodParameters:
            Name  Flags
      comparator  

  public final com.google.common.collect.ImmutableMultiset<E> toMultiset();
    descriptor: ()Lcom/google/common/collect/ImmutableMultiset;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.FluentIterable this
         0: .line 677
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            invokestatic com.google.common.collect.ImmutableMultiset.copyOf:(Ljava/lang/Iterable;)Lcom/google/common/collect/ImmutableMultiset;
            areturn
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/FluentIterable<TE;>;
    Signature: ()Lcom/google/common/collect/ImmutableMultiset<TE;>;

  public final <V> com.google.common.collect.ImmutableMap<E, V> toMap(com.google.common.base.Function<? super E, V>);
    descriptor: (Lcom/google/common/base/Function;)Lcom/google/common/collect/ImmutableMap;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // com.google.common.base.Function valueFunction
         0: .line 697
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            aload 1 /* valueFunction */
            invokestatic com.google.common.collect.Maps.toMap:(Ljava/lang/Iterable;Lcom/google/common/base/Function;)Lcom/google/common/collect/ImmutableMap;
            areturn
        end local 1 // com.google.common.base.Function valueFunction
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  valueFunction  Lcom/google/common/base/Function<-TE;TV;>;
    Signature: <V:Ljava/lang/Object;>(Lcom/google/common/base/Function<-TE;TV;>;)Lcom/google/common/collect/ImmutableMap<TE;TV;>;
    MethodParameters:
               Name  Flags
      valueFunction  

  public final <K> com.google.common.collect.ImmutableListMultimap<K, E> index(com.google.common.base.Function<? super E, K>);
    descriptor: (Lcom/google/common/base/Function;)Lcom/google/common/collect/ImmutableListMultimap;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // com.google.common.base.Function keyFunction
         0: .line 719
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            aload 1 /* keyFunction */
            invokestatic com.google.common.collect.Multimaps.index:(Ljava/lang/Iterable;Lcom/google/common/base/Function;)Lcom/google/common/collect/ImmutableListMultimap;
            areturn
        end local 1 // com.google.common.base.Function keyFunction
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  keyFunction  Lcom/google/common/base/Function<-TE;TK;>;
    Signature: <K:Ljava/lang/Object;>(Lcom/google/common/base/Function<-TE;TK;>;)Lcom/google/common/collect/ImmutableListMultimap<TK;TE;>;
    MethodParameters:
             Name  Flags
      keyFunction  

  public final <K> com.google.common.collect.ImmutableMap<K, E> uniqueIndex(com.google.common.base.Function<? super E, K>);
    descriptor: (Lcom/google/common/base/Function;)Lcom/google/common/collect/ImmutableMap;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // com.google.common.base.Function keyFunction
         0: .line 753
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            aload 1 /* keyFunction */
            invokestatic com.google.common.collect.Maps.uniqueIndex:(Ljava/lang/Iterable;Lcom/google/common/base/Function;)Lcom/google/common/collect/ImmutableMap;
            areturn
        end local 1 // com.google.common.base.Function keyFunction
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  keyFunction  Lcom/google/common/base/Function<-TE;TK;>;
    Signature: <K:Ljava/lang/Object;>(Lcom/google/common/base/Function<-TE;TK;>;)Lcom/google/common/collect/ImmutableMap<TK;TE;>;
    MethodParameters:
             Name  Flags
      keyFunction  

  public final E[] toArray(java.lang.Class<E>);
    descriptor: (Ljava/lang/Class;)[Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // java.lang.Class type
         0: .line 770
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            aload 1 /* type */
            invokestatic com.google.common.collect.Iterables.toArray:(Ljava/lang/Iterable;Ljava/lang/Class;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Class type
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  type  Ljava/lang/Class<TE;>;
    Signature: (Ljava/lang/Class<TE;>;)[TE;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()
    MethodParameters:
      Name  Flags
      type  

  public final <C extends java.util.Collection<? super E>> C copyInto();
    descriptor: (Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // java.util.Collection collection
         0: .line 786
            aload 1 /* collection */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 787
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            astore 2 /* iterable */
        start local 2 // java.lang.Iterable iterable
         2: .line 788
            aload 2 /* iterable */
            instanceof java.util.Collection
            ifeq 5
         3: .line 789
            aload 1 /* collection */
            aload 2 /* iterable */
            checkcast java.util.Collection
            invokeinterface java.util.Collection.addAll:(Ljava/util/Collection;)Z
            pop
         4: .line 790
            goto 9
         5: .line 791
      StackMap locals: java.lang.Iterable
      StackMap stack:
            aload 2 /* iterable */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 4
            goto 8
      StackMap locals: com.google.common.collect.FluentIterable java.util.Collection java.lang.Iterable top java.util.Iterator
      StackMap stack:
         6: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 3 /* item */
        start local 3 // java.lang.Object item
         7: .line 792
            aload 1 /* collection */
            aload 3 /* item */
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // java.lang.Object item
         8: .line 791
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
         9: .line 795
      StackMap locals: com.google.common.collect.FluentIterable java.util.Collection java.lang.Iterable
      StackMap stack:
            aload 1 /* collection */
            areturn
        end local 2 // java.lang.Iterable iterable
        end local 1 // java.util.Collection collection
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lcom/google/common/collect/FluentIterable<TE;>;
            0   10     1  collection  TC;
            2   10     2    iterable  Ljava/lang/Iterable<TE;>;
            7    8     3        item  TE;
    Signature: <C::Ljava/util/Collection<-TE;>;>(TC;)TC;
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()
    MethodParameters:
            Name  Flags
      collection  

  public final java.lang.String join(com.google.common.base.Joiner);
    descriptor: (Lcom/google/common/base/Joiner;)Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // com.google.common.base.Joiner joiner
         0: .line 810
            aload 1 /* joiner */
            aload 0 /* this */
            invokevirtual com.google.common.base.Joiner.join:(Ljava/lang/Iterable;)Ljava/lang/String;
            areturn
        end local 1 // com.google.common.base.Joiner joiner
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  joiner  Lcom/google/common/base/Joiner;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
    MethodParameters:
        Name  Flags
      joiner  

  public final E get();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.FluentIterable this
        start local 1 // int position
         0: .line 827
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            iload 1 /* position */
            invokestatic com.google.common.collect.Iterables.get:(Ljava/lang/Iterable;I)Ljava/lang/Object;
            areturn
        end local 1 // int position
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/google/common/collect/FluentIterable<TE;>;
            0    1     1  position  I
    Signature: (I)TE;
    MethodParameters:
          Name  Flags
      position  

  public final java.util.stream.Stream<E> stream();
    descriptor: ()Ljava/util/stream/Stream;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.FluentIterable this
         0: .line 841
            aload 0 /* this */
            invokevirtual com.google.common.collect.FluentIterable.getDelegate:()Ljava/lang/Iterable;
            invokestatic com.google.common.collect.Streams.stream:(Ljava/lang/Iterable;)Ljava/util/stream/Stream;
            areturn
        end local 0 // com.google.common.collect.FluentIterable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/FluentIterable<TE;>;
    Signature: ()Ljava/util/stream/Stream<TE;>;
}
Signature: <E:Ljava/lang/Object;>Ljava/lang/Object;Ljava/lang/Iterable<TE;>;
SourceFile: "FluentIterable.java"
NestMembers:
  com.google.common.collect.FluentIterable$1  com.google.common.collect.FluentIterable$2  com.google.common.collect.FluentIterable$3  com.google.common.collect.FluentIterable$3$1  com.google.common.collect.FluentIterable$FromIterableFunction
InnerClasses:
  com.google.common.collect.FluentIterable$1
  com.google.common.collect.FluentIterable$2
  com.google.common.collect.FluentIterable$3
  private FromIterableFunction = com.google.common.collect.FluentIterable$FromIterableFunction of com.google.common.collect.FluentIterable
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtCompatible(emulated = true)