Skip to content

EitherABCD

ohitsdaniel edited this page Feb 5, 2021 · 3 revisions

EitherABCD

An either type, representing up to 4 different view types

public enum EitherABCD<A: View, B: View, C: View, D: View>

Inheritance

View

Enumeration Cases

a

case a(: A)

b

case b(: B)

c

case c(: C)

d

case d(: D)

Properties

body

var body: some View
Clone this wiki locally