Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8214753

(opt) add Optional::transform, allowing an arbitrary operation on an Optional

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P4 P4
    • tbd
    • None
    • core-libs
    • None

      Add a method something like this to Optional:

          public <R> R transform(Function<Optional<T>, ? extends R> f) {
              return f.apply(this);
          }

      This allows the caller to provide an arbitrary operation to be performed on "this" Optional, regardless of whether it's empty or present. The name "transform" follows precedent set by String::transform (JDK-8203442).

            smarks Stuart Marks
            smarks Stuart Marks
            Votes:
            1 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: