File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ public let marker = Marker()
66public struct Marker : Val {
77 public static var valType : ValType { . Marker }
88
9+ public static var val : Self {
10+ return marker
11+ }
12+
913 public func toZinc( ) -> String {
1014 return " M "
1115 }
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ public let na = NA()
66public struct NA : Val {
77 public static var valType : ValType { . NA }
88
9+ public static var val : Self {
10+ return na
11+ }
12+
913 public func toZinc( ) -> String {
1014 return " NA "
1115 }
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ public let null = Null()
66public struct Null : Val {
77 public static var valType : ValType { . Null }
88
9+ public static var val : Self {
10+ return null
11+ }
12+
913 public func toZinc( ) -> String {
1014 return " N "
1115 }
You can’t perform that action at this time.
0 commit comments