Sign in
cue
/
cue
/
a5c086620286f244b2e4548f52410622555ec020
/
.
/
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"
}