“Lewa fałda java” Kod odpowiedzi

Lewa fałda java

# https://apocalisp.wordpress.com/2008/04/22/left-fold-in-java/
# now that there is lambdas in Java it's certainly easier but
# this one should stay with us for it is beautiful!
  
  public static <A, B> A fold(F<A, F<B, A>> f, A z, Iterable<B> xs)
    { A p = z;
      for (B x : xs)
        { p = f.f(p).f(x); }
      return p; }
Functional Platypus

Lewa fałda java



public static String concatenate(List<Character> chars) {
        return chars
                .stream()
                .reduce(new StringBuilder(),
                                StringBuilder::append,
                                StringBuilder::append).toString();
    }


Wicked Whale

Odpowiedzi podobne do “Lewa fałda java”

Pytania podobne do “Lewa fałda java”

Więcej pokrewnych odpowiedzi na “Lewa fałda java” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu