-
-
Notifications
You must be signed in to change notification settings - Fork 111
Open
Labels
Description
I have the use case of needing to parse Json from a CharSequence that is not a String and I don't want to take the allocation hit of calling .toString
It would be nice if there was an equivalent function like:
def readFromCharSequence[A](s: CharSequence, config: ReaderConfig = ReaderConfig)(implicit codec: JsonValueCodec[A]): A to allow for this type of reading.