|
Scala example source code file (map.scala)
The map.scala Scala example source codepackage scalaz package std.java.util trait MapInstances { import java.util.Map.Entry import java.util.AbstractMap.SimpleImmutableEntry implicit val mapEntryBitraverse: Bitraverse[Entry] = new Bitraverse[Entry] { override def bimap[A, B, C, D](fab: Entry[A, B])(f: A => C, g: B => D) = new SimpleImmutableEntry(f(fab.getKey), g(fab.getValue)) def bitraverseImpl[G[_]: Applicative, A, B, C, D](fab: Entry[A, B]) (f: A => G[C], g: B => G[D]) = Applicative[G].apply2(f(fab.getKey), g(fab.getValue))(new SimpleImmutableEntry(_, _)) } } object map extends MapInstances Other Scala examples (source code examples)Here is a short list of links related to this Scala map.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.