public static CompletionStage dereference()

in src/main/java/com/spotify/futures/CompletableFuturesExtra.java [227:231]


  public static <T> CompletionStage<T> dereference(
      CompletionStage<? extends CompletionStage<T>> stage) {
    //noinspection unchecked
    return stage.thenCompose(Identity.INSTANCE);
  }