Re: [go-nuts] time.Truncate output is _slightly_ different than expected

2016-11-12 Thread Brian Picciano
is an interval since another, much earlier, reference > time. The remainder in that division will be different. > > //jb > > On 11 Nov 2016, at 15:53, Brian Picciano <mediocregop...@gmail.com> wrote: > > Here's a test case to show what I mean: > > func TestWat(t

Re: [go-nuts] fmt.Fscan without delimeter

2016-10-19 Thread Brian Picciano
unmarshalling. Document the expectations for the library user. :) > > //jb > > > ons 19 okt. 2016 kl 23:25 skrev Brian Picciano <mediocregop...@gmail.com>: > > Hi Ian! I don't think that would work, my data can be pretty much any > arbitrary data, including binary data

Re: [go-nuts] fmt.Fscan without delimeter

2016-10-19 Thread Brian Picciano
t;m...@iandavis.com> wrote: > > On Wed, Oct 19, 2016, at 03:34 PM, Brian Picciano wrote: > > Hi there! My use-case involves reading all data off of an io.Reader and > scanning it into a receiver value provided by the user of my library. In > many ways the same thing as f

[go-nuts] fmt.Fscan without delimeter

2016-10-19 Thread Brian Picciano
Hi there! My use-case involves reading all data off of an io.Reader and scanning it into a receiver value provided by the user of my library. In many ways the same thing as fmt.Fscan. The difference is that only one receiver value is allowed, and I want to read _all_ data until io.EOF, not