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. bigdecimalShowA show instance for theBigDecimaltype.static Show<java.math.BigInteger>Show. bigintShowA show instance for theBigIntegertype.static Show<BitSet>Show. bitSetShowstatic Show<java.lang.Boolean>Show. booleanShowA show instance for thebooleantype.static Show<java.lang.Byte>Show. byteShowA show instance for thebytetype.static Show<java.lang.Character>Show. charShowA show instance for thechartype.static Show<java.lang.Double>Show. doubleShowA show instance for thedoubletype.static Show<java.lang.Float>Show. floatShowA show instance for thefloattype.static Show<HList.HNil>Show. HListShowA show instance for the empty heterogeneous Stream.static Show<java.lang.Integer>Show. intShowA show instance for theinttype.static Show<LazyString>Show. lazyStringShowA show instance for lazy strings.static Show<java.lang.Long>Show. longShowA show instance for thelongtype.static Show<Natural>Show. naturalShowA show instance for natural numbers.static Show<java.lang.Short>Show. shortShowA show instance for theshorttype.static Show<java.lang.StringBuffer>Show. stringBufferShowA show instance for theStringBuffertype.static Show<java.lang.StringBuilder>Show. stringBuilderShowA show instance for theStringBuildertype.static Show<java.lang.String>Show. stringShowA show instance for theStringtype.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 theArraytype.static <A> Show<Class<A>>Show. classShow()A show instance for theClasstype.<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 theEithertype.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 theStreamtype.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 theNonEmptyListtype.static <A> Show<Option<A>>Show. optionShow(Show<A> sa)A show instance for theOptiontype.static <A> Show<P1<A>>Show. p1Show(Show<A> sa)A show instance for thetuple-1type.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-2type 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-2type.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-2type.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-3type.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-4type.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-5type.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-6type.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-7type.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-8type.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 theResulttype.static <A> Show<Seq<A>>Show. seqShow(Show<A> sa)static <A> Show<Set<A>>Show. setShow(Show<A> sa)A show instance for theSettype.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 theStreamtype.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 theStreamtype.static <K,V>
Show<TreeMap<K,V>>Show. treeMapShow(Show<K> sk, Show<V> sv)A show instance for theTreeMaptype.static <A> Show<Tree<A>>Show. treeShow(Show<A> sa)A show instance for theTreetype.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 theValidationtype.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 theArraytype.static <A> java.lang.ErrorBottom. 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 theEithertype.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 theStreamtype.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 theNonEmptyListtype.static <A> Show<Option<A>>Show. optionShow(Show<A> sa)A show instance for theOptiontype.static <A> Show<P1<A>>Show. p1Show(Show<A> sa)A show instance for thetuple-1type.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-2type 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-2type.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-2type.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-3type.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-4type.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-5type.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-6type.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-7type.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-8type.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 theResulttype.static <A> Show<Seq<A>>Show. seqShow(Show<A> sa)static <A> Show<Set<A>>Show. setShow(Show<A> sa)A show instance for theSettype.static <A> Show<Stream<A>>Show. streamShow(Show<A> sa)A show instance for theStreamtype.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 theStreamtype.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 theTreeMaptype.static <A> Show<Tree<A>>Show. treeShow(Show<A> sa)A show instance for theTreetype.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 theValidationtype. -
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.StringTree. 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()
-