Uses of Class
fj.Show
-
Packages that use Show Package Description fj Types that set the premise for the existence of Functional Java.fj.data Common algebraic data types.fj.data.hlist Type-safe, extensible, heterogeneous lists -
-
Uses of Show in fj
Fields in fj declared as Show Modifier and Type Field Description static Show<java.math.BigDecimal>
Show. bigdecimalShow
A show instance for theBigDecimal
type.static Show<java.math.BigInteger>
Show. bigintShow
A show instance for theBigInteger
type.static Show<BitSet>
Show. bitSetShow
static Show<java.lang.Boolean>
Show. booleanShow
A show instance for theboolean
type.static Show<java.lang.Byte>
Show. byteShow
A show instance for thebyte
type.static Show<java.lang.Character>
Show. charShow
A show instance for thechar
type.static Show<java.lang.Double>
Show. doubleShow
A show instance for thedouble
type.static Show<java.lang.Float>
Show. floatShow
A show instance for thefloat
type.static Show<HList.HNil>
Show. HListShow
A show instance for the empty heterogeneous Stream.static Show<java.lang.Integer>
Show. intShow
A show instance for theint
type.static Show<LazyString>
Show. lazyStringShow
A show instance for lazy strings.static Show<java.lang.Long>
Show. longShow
A show instance for thelong
type.static Show<Natural>
Show. naturalShow
A show instance for natural numbers.static Show<java.lang.Short>
Show. shortShow
A show instance for theshort
type.static Show<java.lang.StringBuffer>
Show. stringBufferShow
A show instance for theStringBuffer
type.static Show<java.lang.StringBuilder>
Show. stringBuilderShow
A show instance for theStringBuilder
type.static Show<java.lang.String>
Show. stringShow
A show instance for theString
type.Methods in fj that return Show Modifier and Type Method Description static <A> Show<A>
Show. anyShow()
Returns a show instance that usesObject.toString()
to perform the display rendering.static <A> Show<Array<A>>
Show. arrayShow(Show<A> sa)
A show instance for theArray
type.static <A> Show<Class<A>>
Show. classShow()
A show instance for theClass
type.<B> Show<B>
Show. contramap(F<B,A> f)
Maps the given function across this show as a contra-variant functor.static <V,A>
Show<Digit<V,A>>Show. digitShow(Show<V> sv, Show<A> sa)
static <A,B,C>
Show<Either3<A,B,C>>Show. either3Show(Show<A> sa, Show<B> sb, Show<C> sc)
static <A,B>
Show<Either<A,B>>Show. eitherShow(Show<A> sa, Show<B> sb)
A show instance for theEither
type.static <V,A>
Show<FingerTree<V,A>>Show. fingerTreeShow(Show<V> sv, Show<A> sa)
static <K,V>
Show<Node<K,V>>Show. hamtNodeShow(Show<K> sk, Show<V> sv)
static <K,V>
Show<HashArrayMappedTrie<K,V>>Show. hamtShow(Show<K> sk, Show<V> sv)
static <E,L extends HList<L>>
Show<HList.HCons<E,L>>Show. HListShow(Show<E> e, Show<L> l)
A show instance for heterogeneous Streams.static <A> Show<List<A>>
Show. listShow(Show<A> sa)
A show instance for theStream
type.static <V,A>
Show<Node<V,A>>Show. nodeShow(Show<V> sv, Show<A> sa)
static <A> Show<NonEmptyList<A>>
Show. nonEmptyListShow(Show<A> sa)
A show instance for theNonEmptyList
type.static <A> Show<Option<A>>
Show. optionShow(Show<A> sa)
A show instance for theOption
type.static <A> Show<P1<A>>
Show. p1Show(Show<A> sa)
A show instance for thetuple-1
type.static <A> Show<P1<A>>
Show. p1ShowEager(Show<A> sa)
static <A> Show<P1<A>>
Show. p1ShowLazy(Show<A> sa)
static <A,B>
Show<P2<A,B>>Show. p2MapShow(Show<A> sa, Show<B> sb)
A show instance for thetuple-2
type in the style of a mapping from A to B.static <A,B>
Show<P2<A,B>>Show. p2Show(Show<A> sa, Show<B> sb)
A show instance for thetuple-2
type.static <A,B>
Show<P2<A,B>>Show. p2Show(Show<A> sa, Show<B> sb, java.lang.String start, java.lang.String sep, java.lang.String end)
A show instance for thetuple-2
type.static <A,B,C>
Show<P3<A,B,C>>Show. p3Show(Show<A> sa, Show<B> sb, Show<C> sc)
A show instance for thetuple-3
type.static <A,B,C,D>
Show<P4<A,B,C,D>>Show. p4Show(Show<A> sa, Show<B> sb, Show<C> sc, Show<D> sd)
A show instance for thetuple-4
type.static <A,B,C,D,E>
Show<P5<A,B,C,D,E>>Show. p5Show(Show<A> sa, Show<B> sb, Show<C> sc, Show<D> sd, Show<E> se)
A show instance for thetuple-5
type.static <A,B,C,D,E,F$>
Show<P6<A,B,C,D,E,F$>>Show. p6Show(Show<A> sa, Show<B> sb, Show<C> sc, Show<D> sd, Show<E> se, Show<F$> sf)
A show instance for thetuple-6
type.static <A,B,C,D,E,F$,G>
Show<P7<A,B,C,D,E,F$,G>>Show. p7Show(Show<A> sa, Show<B> sb, Show<C> sc, Show<D> sd, Show<E> se, Show<F$> sf, Show<G> sg)
A show instance for thetuple-7
type.static <A,B,C,D,E,F$,G,H>
Show<P8<A,B,C,D,E,F$,G,H>>Show. p8Show(Show<A> sa, Show<B> sb, Show<C> sc, Show<D> sd, Show<E> se, Show<F$> sf, Show<G> sg, Show<H> sh)
A show instance for thetuple-8
type.static <K,V>
Show<PriorityQueue<K,V>>Show. priorityQueueShow(Show<K> sk, Show<V> sv)
static <I,A>
Show<Result<I,A>>Show. resultShow(Show<A> sa, Show<I> si)
A show instance for theResult
type.static <A> Show<Seq<A>>
Show. seqShow(Show<A> sa)
static <A> Show<Set<A>>
Show. setShow(Show<A> sa)
A show instance for theSet
type.static <A> Show<A>
Show. show(F<A,Stream<java.lang.Character>> f)
Returns a show instance using the given function.static <A> Show<A>
Show. showS(F<A,java.lang.String> f)
Returns a show instance using the given function.static <A> Show<Stream<A>>
Show. streamShow(Show<A> sa)
A show instance for theStream
type.static <A> Show<Stream<A>>
Show. streamShow(Show<A> sa, java.lang.String start, java.lang.String sep, java.lang.String end)
A show instance for theStream
type.static <K,V>
Show<TreeMap<K,V>>Show. treeMapShow(Show<K> sk, Show<V> sv)
A show instance for theTreeMap
type.static <A> Show<Tree<A>>
Show. treeShow(Show<A> sa)
A show instance for theTree
type.static <A> Show<Stream<A>>
Show. unlineShow(Show<A> sa)
A show instance for streams that splits into lines.static <A> Show<V2<A>>
Show. v2Show(Show<A> ea)
A show instance for a vector-2.static <A> Show<V3<A>>
Show. v3Show(Show<A> ea)
A show instance for a vector-3.static <A> Show<V4<A>>
Show. v4Show(Show<A> ea)
A show instance for a vector-4.static <A> Show<V5<A>>
Show. v5Show(Show<A> ea)
A show instance for a vector-5.static <A> Show<V6<A>>
Show. v6Show(Show<A> ea)
A show instance for a vector-6.static <A> Show<V7<A>>
Show. v7Show(Show<A> ea)
A show instance for a vector-7.static <A> Show<V8<A>>
Show. v8Show(Show<A> ea)
A show instance for a vector-8.static <A,B>
Show<Validation<A,B>>Show. validationShow(Show<A> sa, Show<B> sb)
A show instance for theValidation
type.Methods in fj that return types with arguments of type Show Modifier and Type Method Description default F<Show<B>,Show<A>>
F. contramapShow()
Promotes this function to map over a Show as a contravariant functor.default F<Show<B>,Show<A>>
F. contramapShow()
Promotes this function to map over a Show as a contravariant functor.Methods in fj with parameters of type Show Modifier and Type Method Description static <A> Show<Array<A>>
Show. arrayShow(Show<A> sa)
A show instance for theArray
type.static <A> java.lang.Error
Bottom. decons(A a, Show<A> sa)
Represents a deconstruction failure that was non-exhaustive.static <V,A>
Show<Digit<V,A>>Show. digitShow(Show<V> sv, Show<A> sa)
static <A,B,C>
Show<Either3<A,B,C>>Show. either3Show(Show<A> sa, Show<B> sb, Show<C> sc)
static <A,B>
Show<Either<A,B>>Show. eitherShow(Show<A> sa, Show<B> sb)
A show instance for theEither
type.static <V,A>
Show<FingerTree<V,A>>Show. fingerTreeShow(Show<V> sv, Show<A> sa)
static <K,V>
Show<Node<K,V>>Show. hamtNodeShow(Show<K> sk, Show<V> sv)
static <K,V>
Show<HashArrayMappedTrie<K,V>>Show. hamtShow(Show<K> sk, Show<V> sv)
static <E,L extends HList<L>>
Show<HList.HCons<E,L>>Show. HListShow(Show<E> e, Show<L> l)
A show instance for heterogeneous Streams.static <A> Show<List<A>>
Show. listShow(Show<A> sa)
A show instance for theStream
type.static <V,A>
Show<Node<V,A>>Show. nodeShow(Show<V> sv, Show<A> sa)
static <A> Show<NonEmptyList<A>>
Show. nonEmptyListShow(Show<A> sa)
A show instance for theNonEmptyList
type.static <A> Show<Option<A>>
Show. optionShow(Show<A> sa)
A show instance for theOption
type.static <A> Show<P1<A>>
Show. p1Show(Show<A> sa)
A show instance for thetuple-1
type.static <A> Show<P1<A>>
Show. p1ShowEager(Show<A> sa)
static <A> Show<P1<A>>
Show. p1ShowLazy(Show<A> sa)
static <A,B>
Show<P2<A,B>>Show. p2MapShow(Show<A> sa, Show<B> sb)
A show instance for thetuple-2
type in the style of a mapping from A to B.static <A,B>
Show<P2<A,B>>Show. p2Show(Show<A> sa, Show<B> sb)
A show instance for thetuple-2
type.static <A,B>
Show<P2<A,B>>Show. p2Show(Show<A> sa, Show<B> sb, java.lang.String start, java.lang.String sep, java.lang.String end)
A show instance for thetuple-2
type.static <A,B,C>
Show<P3<A,B,C>>Show. p3Show(Show<A> sa, Show<B> sb, Show<C> sc)
A show instance for thetuple-3
type.static <A,B,C,D>
Show<P4<A,B,C,D>>Show. p4Show(Show<A> sa, Show<B> sb, Show<C> sc, Show<D> sd)
A show instance for thetuple-4
type.static <A,B,C,D,E>
Show<P5<A,B,C,D,E>>Show. p5Show(Show<A> sa, Show<B> sb, Show<C> sc, Show<D> sd, Show<E> se)
A show instance for thetuple-5
type.static <A,B,C,D,E,F$>
Show<P6<A,B,C,D,E,F$>>Show. p6Show(Show<A> sa, Show<B> sb, Show<C> sc, Show<D> sd, Show<E> se, Show<F$> sf)
A show instance for thetuple-6
type.static <A,B,C,D,E,F$,G>
Show<P7<A,B,C,D,E,F$,G>>Show. p7Show(Show<A> sa, Show<B> sb, Show<C> sc, Show<D> sd, Show<E> se, Show<F$> sf, Show<G> sg)
A show instance for thetuple-7
type.static <A,B,C,D,E,F$,G,H>
Show<P8<A,B,C,D,E,F$,G,H>>Show. p8Show(Show<A> sa, Show<B> sb, Show<C> sc, Show<D> sd, Show<E> se, Show<F$> sf, Show<G> sg, Show<H> sh)
A show instance for thetuple-8
type.static <K,V>
Show<PriorityQueue<K,V>>Show. priorityQueueShow(Show<K> sk, Show<V> sv)
static <I,A>
Show<Result<I,A>>Show. resultShow(Show<A> sa, Show<I> si)
A show instance for theResult
type.static <A> Show<Seq<A>>
Show. seqShow(Show<A> sa)
static <A> Show<Set<A>>
Show. setShow(Show<A> sa)
A show instance for theSet
type.static <A> Show<Stream<A>>
Show. streamShow(Show<A> sa)
A show instance for theStream
type.static <A> Show<Stream<A>>
Show. streamShow(Show<A> sa, java.lang.String start, java.lang.String sep, java.lang.String end)
A show instance for theStream
type.static <A> F<Stream<A>,Stream<java.lang.Character>>
Show. streamShow_(Show<A> sa, java.lang.String start, java.lang.String sep, java.lang.String end)
Returns the transformation equivalent for the stream show.static <K,V>
Show<TreeMap<K,V>>Show. treeMapShow(Show<K> sk, Show<V> sv)
A show instance for theTreeMap
type.static <A> Show<Tree<A>>
Show. treeShow(Show<A> sa)
A show instance for theTree
type.static <A> Show<Stream<A>>
Show. unlineShow(Show<A> sa)
A show instance for streams that splits into lines.static <A> Show<V2<A>>
Show. v2Show(Show<A> ea)
A show instance for a vector-2.static <A> Show<V3<A>>
Show. v3Show(Show<A> ea)
A show instance for a vector-3.static <A> Show<V4<A>>
Show. v4Show(Show<A> ea)
A show instance for a vector-4.static <A> Show<V5<A>>
Show. v5Show(Show<A> ea)
A show instance for a vector-5.static <A> Show<V6<A>>
Show. v6Show(Show<A> ea)
A show instance for a vector-6.static <A> Show<V7<A>>
Show. v7Show(Show<A> ea)
A show instance for a vector-7.static <A> Show<V8<A>>
Show. v8Show(Show<A> ea)
A show instance for a vector-8.static <A,B>
Show<Validation<A,B>>Show. validationShow(Show<A> sa, Show<B> sb)
A show instance for theValidation
type. -
Uses of Show in fj.data
Methods in fj.data that return Show Modifier and Type Method Description static <A> Show<TreeZipper<A>>
TreeZipper. show(Show<A> s)
A Show instance for tree zippers.static <A> Show<Zipper<A>>
Zipper. show(Show<A> s)
A Show instance for Zippers.static <A> Show<Tree<A>>
Tree. show2D(Show<A> s)
Provides a show instance that draws a 2-dimensional representation of a tree.Methods in fj.data with parameters of type Show Modifier and Type Method Description java.lang.String
Tree. draw(Show<A> s)
Draws a 2-dimensional representation of a tree.private static <A> Stream<java.lang.String>
Tree. drawSubTrees(Show<A> s, Stream<Tree<A>> ts)
private Stream<java.lang.String>
Tree. drawTree(Show<A> s)
static <A> Show<TreeZipper<A>>
TreeZipper. show(Show<A> s)
A Show instance for tree zippers.static <A> Show<Zipper<A>>
Zipper. show(Show<A> s)
A Show instance for Zippers.static <A> Show<Tree<A>>
Tree. show2D(Show<A> s)
Provides a show instance that draws a 2-dimensional representation of a tree. -
Uses of Show in fj.data.hlist
Methods in fj.data.hlist that return Show Modifier and Type Method Description abstract Show<A>
HPre.HNat. show()
Show<HPre.HSucc<N>>
HPre.HSucc. show()
Show<HPre.HZero>
HPre.HZero. show()
-