File: mdotlookup.nim

package info (click to toggle)
nim 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,911,644 kB
  • sloc: sh: 24,603; ansic: 1,761; python: 1,492; makefile: 1,013; sql: 298; asm: 141; xml: 13
file content (28 lines) | stat: -rw-r--r-- 485 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
proc baz(o: auto): int = 5 # if bar is exported, it works

type MyObj = object
  x: int

proc foo*(b: auto) =
  var o: MyObj
  echo b.baz, " ", o.x.baz, " ", b.baz()

import sets

var intset = initHashSet[int]()

proc fn*[T](a: T) =
  if a in intset: echo("true")
  else: echo("false")

import strutils

proc doStrip*[T](a: T): string =
  result = ($a).strip()

type Foo = int32
proc baz2*[T](y: int): auto =
  result = y.Foo

proc set*(x: var int, a, b: string) =
  x = a.len + b.len