Tuple.toString

Formats Tuple with either %s, %(inner%) or %(inner%|sep%).

$(TABLE2 Formats supported by Tuple, $(THEAD Format, Description) $(TROW $(P `%s`), $(P Format like `Tuple!(types)(elements formatted with %s each)`.)) $(TROW $(P `%(inner%)`), $(P The format `inner` is applied the expanded `Tuple`$(COMMA) so it may contain as many formats as the `Tuple` has fields.)) $(TROW $(P `%(inner%|sep%)`), $(P The format `inner` is one format$(COMMA) that is applied on all fields of the `Tuple`. The inner format must be compatible to all of them.)))

  1. string toString()
  2. void toString(DG sink)
  3. void toString(DG sink, FormatSpec!Char fmt)
    struct Tuple
    const
    void
    toString
    (
    DG
    Char
    )
    (
    scope DG sink
    ,
    const ref FormatSpec!Char fmt
    )

Parameters

sink DG

A char accepting delegate

fmt FormatSpec!Char

Meta