Sign in
cue
/
cue
/
c1c4c6330a92496fdce56bb332af3f48382b8ca6
/
.
/
encoding
/
openapi
/
testdata
/
strings.cue
blob: 74ea59ef886baf39a224602095cb8a6a7f450027 [
file
] [
log
] [
blame
]
import
"strings"
MyType
::
{
myString
:
strings
.
MinRunes
(
1
)
&
strings
.
MaxRunes
(
5
)
myPattern
:
=~
"foo.*bar"
myAntiPattern
:
!~
"foo.*bar"
}