Chewxy
Chewxy
It is possible. However I'm currently working on a new version which would make integration a lot easier
oh okay.. this usecase is not one that I've seen before. Let me try
This looks like some sort of driver/compute inconsistency (the dump is a clue) What versions are you using
Arghhhhh! I thought I updated this. I even [tweeted](https://twitter.com/chewxy/status/1654059407863603201) about updating this!! I need to go find the machine where I made the change, as I suspect I didn't make...
Be my guest
the reason you'd do that is because `SubstrBytes` creates and allocates a `[]byte`. In applications where you'd have heavy writes to a string, you probably already have a `[]byte` pool...
`WriteTo` is like `fmt.Fprintf`. It writes from char 0 to char n to `io.Writer` that is passed in. `WriteToSubstr` is like `WriteTo` but instead of writing from 0 to n...
That's a concerning error. Looking into it right how