io.vavr.control.Try.sequence()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(2.2k)|赞(0)|评价(0)|浏览(319)

本文整理了Java中io.vavr.control.Try.sequence()方法的一些代码示例,展示了Try.sequence()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Try.sequence()方法的具体详情如下:
包路径:io.vavr.control.Try
类名称:Try
方法名:sequence

Try.sequence介绍

[英]Reduces many Trys into a single Try by transforming an Iterable> into a Try>. If any of the Trys are Try.Failure, then this returns a Try.Failure.
[中]通过将Iterable>转换为Try>,将多次尝试减少为一次尝试。如果任何一次尝试都失败了。失败,则返回一次尝试。失败

代码示例

代码示例来源:origin: vavr-io/vavr

  1. /**
  2. * Maps the values of an iterable to a sequence of mapped values into a single {@code Try} by
  3. * transforming an {@code Iterable<? extends T>} into a {@code Try<Seq<U>>}.
  4. * <p>
  5. *
  6. * @param values An {@code Iterable} of values.
  7. * @param mapper A mapper of values to Trys
  8. * @param <T> The type of the given values.
  9. * @param <U> The mapped value type.
  10. * @return A {@code Try} of a {@link Seq} of results.
  11. * @throws NullPointerException if values or f is null.
  12. */
  13. static <T, U> Try<Seq<U>> traverse(Iterable<? extends T> values, Function<? super T, ? extends Try<? extends U>> mapper) {
  14. Objects.requireNonNull(values, "values is null");
  15. Objects.requireNonNull(mapper, "mapper is null");
  16. return sequence(Iterator.ofAll(values).map(mapper));
  17. }

代码示例来源:origin: martincooper/java-datatable

  1. /**
  2. * Converts a Seq<Try<IDataColumn>> into a Try<Seq<IDataColumn>>
  3. *
  4. * @param items The values to convert.
  5. * @return Returns the converted items.
  6. */
  7. private Try<Seq<IDataColumn>> toSequence(Seq<Try<IDataColumn>> items) {
  8. return Try.sequence(items);
  9. }

代码示例来源:origin: io.vavr/vavr

  1. /**
  2. * Maps the values of an iterable to a sequence of mapped values into a single {@code Try} by
  3. * transforming an {@code Iterable<? extends T>} into a {@code Try<Seq<U>>}.
  4. * <p>
  5. *
  6. * @param values An {@code Iterable} of values.
  7. * @param mapper A mapper of values to Trys
  8. * @param <T> The type of the given values.
  9. * @param <U> The mapped value type.
  10. * @return A {@code Try} of a {@link Seq} of results.
  11. * @throws NullPointerException if values or f is null.
  12. */
  13. static <T, U> Try<Seq<U>> traverse(Iterable<? extends T> values, Function<? super T, ? extends Try<? extends U>> mapper) {
  14. Objects.requireNonNull(values, "values is null");
  15. Objects.requireNonNull(mapper, "mapper is null");
  16. return sequence(Iterator.ofAll(values).map(mapper));
  17. }

相关文章