2024-05-01 07:10:11 +02:00
|
|
|
// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com).
|
|
|
|
// All rights reserved.
|
|
|
|
|
|
|
|
// common-params.go
|
|
|
|
package expr
|
|
|
|
|
|
|
|
const (
|
2024-06-09 10:13:37 +02:00
|
|
|
ParamCount = "count"
|
|
|
|
ParamItem = "item"
|
|
|
|
ParamParts = "parts"
|
|
|
|
ParamSeparator = "separator"
|
|
|
|
ParamSource = "source"
|
|
|
|
ParamSuffix = "suffix"
|
|
|
|
ParamPrefix = "prefix"
|
|
|
|
ParamStart = "start"
|
|
|
|
ParamEnd = "end"
|
|
|
|
ParamValue = "value"
|
2024-06-12 11:16:57 +02:00
|
|
|
ParamName = "name"
|
2024-06-09 10:13:37 +02:00
|
|
|
ParamEllipsis = "..."
|
|
|
|
ParamFilepath = "filepath"
|
|
|
|
ParamDirpath = "dirpath"
|
2024-05-01 07:10:11 +02:00
|
|
|
)
|
2024-06-19 09:17:46 +02:00
|
|
|
|
|
|
|
// to be moved in its own source file
|
|
|
|
const (
|
|
|
|
ConstLastIndex = 0xFFFF_FFFF
|
|
|
|
)
|