Initial commit with ?: and ?.
This commit is contained in:
commit
fcb1e36e6c
19
langutils.nim
Normal file
19
langutils.nim
Normal file
@ -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
|
||||
|
||||
|
11
langutils.nimble
Normal file
11
langutils.nimble
Normal file
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user