|
Scala example source code file (ShowSyntax.scala)
The ShowSyntax.scala Scala example source codepackage scalaz package syntax /** Wraps a value `self` and provides methods related to `Show` */ final class ShowOps[F] private[syntax](val self: F)(implicit val F: Show[F]) extends Ops[F] { //// final def show: Cord = F.show(self) final def shows: String = F.shows(self) final def print: Unit = Console.print(shows) final def println: Unit = Console.println(shows) //// } trait ToShowOps { implicit def ToShowOps[F](v: F)(implicit F0: Show[F]) = new ShowOps[F](v) //// //// } trait ShowSyntax[F] { implicit def ToShowOps(v: F): ShowOps[F] = new ShowOps[F](v)(ShowSyntax.this.F) def F: Show[F] //// //// } Other Scala examples (source code examples)Here is a short list of links related to this Scala ShowSyntax.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.