commit fcb1e36e6c42849254ce65d275bcf1ea58e8f155 Author: Jonathan Bernard Date: Fri Oct 7 20:11:53 2016 -0500 Initial commit with ?: and ?. diff --git a/langutils.nim b/langutils.nim new file mode 100644 index 0000000..510b145 --- /dev/null +++ b/langutils.nim @@ -0,0 +1,19 @@ +template `?:`*(a, b: string): string = + if len(a) > 0: a else: b + +template `?:`*(a: object, b: string): string = + if a: $a else: b + +template `?:`*(a: ref, b): auto = + if a != nil: a else: b + +template `?:`*(a, b: object): object = + if a: a else: b + +template `?:`*(a, b): auto = + if a: a else: b + +template `?.`*(a: ref, b: untyped): auto = + if a != nil: a.b else: nil + + diff --git a/langutils.nimble b/langutils.nimble new file mode 100644 index 0000000..b2ed1a6 --- /dev/null +++ b/langutils.nimble @@ -0,0 +1,11 @@ +# Package + +version = "0.1.0" +author = "Jonathan Bernard" +description = "Language extensions (templates, macros) I commonly use." +license = "MIT" + +# Dependencies + +requires "nim >= 0.15.0" +