summaryrefslogtreecommitdiff
path: root/lib/containers/optional.go
blob: 3055308a6c16328d969cd867a5ca35e3162ae944 (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright (C) 2022  Luke Shumaker <lukeshu@lukeshu.com>
//
// SPDX-License-Identifier: GPL-2.0-or-later

package containers

type Optional[T any] struct {
	OK  bool
	Val T
}