public static CompletionStage dereference()

in src/main/java/com/spotify/futures/CompletableFutures.java [402:405]


  public static <T> CompletionStage<T> dereference(
      CompletionStage<? extends CompletionStage<T>> stage) {
    return stage.thenCompose(Function.identity());
  }