mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-09 22:43:34 +00:00
18 lines
329 B
Nim
18 lines
329 B
Nim
#
|
|
#
|
|
# Nim's Runtime Library
|
|
# (c) Copyright 2020 Nim contributors
|
|
#
|
|
# See the file "copying.txt", included in this
|
|
# distribution, for details about the copyright.
|
|
#
|
|
|
|
type
|
|
NimSeqPayloadReimpl = object
|
|
cap: int
|
|
data: pointer
|
|
|
|
NimSeqV2Reimpl = object
|
|
len: int
|
|
p: ptr NimSeqPayloadReimpl
|