Picture

object Picture
Companion:
class
Source:
Picture.scala
class Object
trait Matchable
class Any
Picture.type

Implicits

Implicits

implicit def pictureApplicativeInstance[Alg <: Algebra]: Applicative[[_] =>> Picture[Alg, _$1]]
implicit def pictureMonoidInstance[Alg <: Layout & Shape, A](implicit m: Monoid[A]): Monoid[Picture[Alg, A]]

Picture[Alg,A] has a Monoid instance if:

Picture[Alg,A] has a Monoid instance if:

  • the algebra has Layout and Shape; and
  • and the result type has a Monoid.

In this case the combine is on, with identity empty.

Source:
Picture.scala