0w      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuv*(c) 2013 Chris Done, 2013 Shachaf Ben-KikiBSD3chrisdone@gmail.com experimentalGHC Safe-Inferred!"2HMYThe type of a monoid with holes. The underlying monoid is represented by type parameter m. The rK is the result type and stays polymorphic until the very last moment when run is called. The last argument aI is always a function with zero or more arguments, finally resulting in rR. Ordering the arguments in this order allows holey monoids to be composed using w2, stacking the expected arguments. Note that the x* constraint is only used in the identity  and in composing two s. A formatter.7Composition operator. The same as category composition.MFunction compose two holeys. Will feed the result of one holey into another.!Insert a constant monoidal value. 'Monadic indexed bind for holey monoids. HInsert a monoidal value that is not specified until the computation is runk. The argument that is expected later is converted to the monoid type using the given conversion function.y/Very useful instance for writing format string.  yz    yz*(c) 2013 Chris Done, 2013 Shachaf Ben-KikiBSD3chrisdone@gmail.com experimentalGHCNone!"HM" Output a lazy text. Output a strict text. Output a string.%Output a showable value (instance of {) by turning it into |:@format ("Value number " % shown % " is " % shown % ".") 42 False"Value number 42 is False."Output a character.Build a builder.Like } but for formatters.#Build anything that implements the  Buildable class./Render an integral e.g. 123 -> "123", 0 -> "0".KRender some floating point with the usual notation, e.g. 123.32 => "123.32"~Render a floating point number using scientific/engineering notation (e.g. 2.3e123), with the given number of decimal places._Render a floating point number using normal notation, with the given number of decimal places.Render a floating point number, with the given number of digits of precision. Uses decimal notation for values between 0.1 and 9,999,999, and scientific notation otherwise.`Render a floating point number using the smallest number of digits that correctly represent it.Render a scientific number.(Render a scientific number with options.,Shows the Int value of Enum instances using ~.4format ("Got: " % char % " (" % asInt % ")") 'a' 'a' "Got: a (97)"nPad the left hand side of a string until it reaches k characters wide, if necessary filling with character c.oPad the right hand side of a string until it reaches k characters wide, if necessary filling with character c.vPad the left & right hand side of a string until it reaches k characters wide, if necessary filling with character c.(Group integral numbers, e.g. groupInt 2 w on 123456 -> "12.34.56". 0Fit in the given length, truncating on the left.!1Fit in the given length, truncating on the right."2Add commas to an integral, e.g 12000 -> "12,000".#6Add a suffix to an integral, e.g. 1st, 2nd, 3rd, 21st.%ORender an integer using binary notation. (No leading 0b is added.) Defined as bin = $ 2.&NRender an integer using octal notation. (No leading 0o is added.) Defined as oct = $ 8.'jRender an integer using hexadecimal notation. (No leading 0x is added.) Has a specialized implementation.(:Render an integer using binary notation with a leading 0b.)9Render an integer using octal notation with a leading 0o.*?Render an integer using hexadecimal notation with a leading 0x.KInternal function that converts a number to a base base-2 through base-36.A simpler variant of > that only prepends a dash and doesn't know about parenthesesLike  , but handles up to base-36#  !"#$%&'()*!  !"#$%&'()*! "# !$%&'()*#  !"#$%&'()* Safe-Inferred+$Run the formatter and return a lazy | value.,&Run the formatter and return a strict  value.-Run the formatter and return a  value..3Run the formatter and print out the text to stdout./4Run the formatter and put the output onto the given .+,-./+,-./+,-./+,-./*(c) 2013 Chris Done, 2013 Shachaf Ben-KikiBSD3chrisdone@gmail.com experimentalGHCNone!"HM0Output a lazy text.1/Render an integral e.g. 123 -> "123", 0 -> "0".2CRender an integer using binary notation. (No leading 0b is added.)3ARender an integer using octal notation. (No leading 0o is added.)4HRender an integer using hexadecimal notation. (No leading 0x is added.)5Output a strict text.6Output a string.7%Output a showable value (instance of {) by turning it into |.8Output a character.9~Render a floating point number using scientific/engineering notation (e.g. 2.3e123), with the given number of decimal places.:_Render a floating point number using normal notation, with the given number of decimal places.;Render a floating point number, with the given number of digits of precision. Uses decimal notation for values between 0.1 and 9,999,999, and scientific notation otherwise.<`Render a floating point number using the smallest number of digits that correctly represent it.=4Pad the left hand side of a string until it reaches k7 characters wide, if necessary filling with character ch.>5Pad the right hand side of a string until it reaches k7 characters wide, if necessary filling with character ch.0123456789:;<=>0123456789:;<=>0123456789:;<=>0123456789:;<=>NoneHM/?Timezone offset on the format -HHMM.@Timezone name.AAs  locale (e.g. %a %b %e %H:%M:%S %Z %Y).BSame as %H:%M.CSame as %H:%M:%S.DAs  locale (e.g. %H:%M:%S).EAs  locale (e.g.  %I:%M:%S %p).FDay half from ( locale), converted to lowercase, am, pm.GDay half from ( locale), AM, PM.H$Hour, 24-hour, leading 0 as needed, 00 - 23.I$Hour, 12-hour, leading 0 as needed, 01 - 12.J(Hour, 24-hour, leading space as needed,  0 - 23.K(Hour, 12-hour, leading space as needed,  1 - 12.LMinute, 00 - 59.MSecond, without decimal part, 00 - 60.N&Picosecond, including trailing zeros,  000000000000 -  999999999999.ODecimal point and up to 12 second decimals, without trailing zeros. For a whole number of seconds, this produces the empty string.QSame as %m/%d/%y.RSame as %Y-%m-%d.SAs  locale (e.g. %m/%d/%y).TYear.ULast two digits of year, 00 - 99.V2Century (being the first two digits of the year), 00 - 99.WMonth name, long form ( from  locale), January - December.X %H] month name, short form ( from  locale), Jan - Dec@.Y$Month of year, leading 0 as needed, 01 - 12.Z#Day of month, leading 0 as needed, 01 - 31.[Day of month, 1st, 2nd, 25th, etc.\'Day of month, leading space as needed,  1 - 31.]%Day of year for Ordinal Date format, 001 - 366.^Year for Week Date format e.g. 2013._.Last two digits of year for Week Date format, 00 - 99.`9Century (first two digits of year) for Week Date format, 00 - 99.aWeek for Week Date format, 01 - 53.bDay for Week Date format, 1 - 7.cDay of week, short form ( from  locale), Sun - Sat.dDay of week, long form ( from  locale), Sunday - Saturday.e6Week number of year, where weeks start on Sunday (as sundayStartWeek), 00 - 53.fDay of week number, 0 (= Sunday) - 6 (= Saturday).g6Week number of year, where weeks start on Monday (as mondayStartWeek), 00 - 53.hiDisplay a time span as one time relative to another. Input is assumed to be seconds. Typical inputs are  and .i.Display the absolute value time span in years.j-Display the absolute value time span in days.k.Display the absolute value time span in hours.l0Display the absolute value time span in minutes.m0Display the absolute value time span in seconds.n0Formatter call. Probably don't want to use this.0?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghDisplay 'in/ago'?*Example: '3 seconds ago', 'in three days'.iDecimal places.jDecimal places.kDecimal places.lDecimal places.mDecimal places.n0?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmn0?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmn0?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmn *(c) 2013 Chris Done, 2013 Shachaf Ben-KikiBSD3chrisdone@gmail.com experimentalGHCNone!"HM0  !"#$%&'()*+,-./+,-./NoneoSimple hello, world!pPrinting strings.qPrinting texts.rPrinting builders.sPrinting integers.tPrinting floating points.u$Printing integrals in hex (base-16).vPadding.opqrstuvopqrstuvopqrstuvopqrstuv  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~11111111formatting-5.3Formatting.FormattersFormatting.HoleyFormatting.InternalFormatting.ShortFormattersFormatting.TimeFormatting.ExamplesNumeric showSigned Data.Char intToDigit Formattingtext-format-0.3.1.1Data.Text.Buildable BuildableHoleyHoleyTrunHMFormat%%.nowbindlatertextstextstringshowncharbuilderfconstbuildintfloatexptfixedprecshortestsciscifmtasIntleftrightcentergroupIntfitLeftfitRightcommasordsbasebinocthex prefixBin prefixOct prefixHexformatsformatbprintfprinthprinttdboxstsshceffpfsflrtztzNamedatetimehmhmshmsLhmsPLdayHalfdayHalfUhour24hour12hour24Shour12Sminutesecondpicodecimalsepoch dateSlashdateDash dateSlashLyearyycentury monthNamemonthNameShortmonth dayOfMonth dayOfMonthOrd dayOfMonthSdayweekYearweekYY weekCenturyweek dayOfWeek dayNameShortdayName weekFromZerodayOfWeekFromZero weekOfYearMondiffyearsdayshoursminutessecondsfmthellostringstextsbuildersintegersfloatshexespaddingGHC.Base. Data.MonoidMonoid$fIsStringHoleyT$fFunctorHoleyTGHC.ShowShow text-1.2.0.0Data.Text.Internal.LazyTextconstGHC.EnumfromEnumatBase showSigned' intToDigit'Data.Text.InternalData.Text.Internal.BuilderBuilderGHC.IO.Handle.TypesHandleold-locale-1.0.0.6 System.Locale dateTimeFmttimeFmt time12FmtamPmdateFmt Data.TuplefstmonthssndwDays time-1.4.2Data.Time.Clock.UTCNominalDiffTimeData.Time.Clock.ScaleDiffTime