NewDecoder returns a Decoder for deserializing Smithy documents for JSON based protocols.
(optFns ...func(*DecoderOptions))
| 15 | |
| 16 | // NewDecoder returns a Decoder for deserializing Smithy documents for JSON based protocols. |
| 17 | func NewDecoder(optFns ...func(*DecoderOptions)) *Decoder { |
| 18 | o := DecoderOptions{} |
| 19 | |
| 20 | for _, fn := range optFns { |
| 21 | fn(&o) |
| 22 | } |
| 23 | |
| 24 | return &Decoder{ |
| 25 | options: o, |
| 26 | } |
| 27 | } |
no outgoing calls