From 3dd01cdc78833ef9b9f46a4db1c125f800feff73 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Sat, 24 Feb 2024 16:44:15 -0800 Subject: [PATCH] tlv: add Zero() method for OptionalRecordT Most of the time with wire messages, we'll have the wrapped record, so this is useful when decoding into a blank instance of the record's value. --- tlv/record_type.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tlv/record_type.go b/tlv/record_type.go index ec893a06b..297617d5a 100644 --- a/tlv/record_type.go +++ b/tlv/record_type.go @@ -140,6 +140,11 @@ func (o *OptionalRecordT[T, V]) UnwrapOrErrV(err error) (V, error) { return inner.Val, nil } +// Zero returns a zero value of the record type. +func (t *OptionalRecordT[T, V]) Zero() RecordT[T, V] { + return ZeroRecordT[T, V]() +} + // SomeRecordT creates a new OptionalRecordT type from a given RecordT type. func SomeRecordT[T TlvType, V any](record RecordT[T, V]) OptionalRecordT[T, V] { return OptionalRecordT[T, V]{