string.integer.parse < 100
Here's an actual validator I'm trying to build
I want the input to be a number, potentialy in string form, and less than 28.
How do I build a check on the output of the parse?
26 Replies
One of these will work:
yea I just discovered the
.to
method
I like the idea of "one-shotting" it like in the first example, but feels like .to is a bit cleanerYeah makes the grouping explicit without needing parens
I think
|>
is better when it's not mixed with unionswhat if its also nullable
Seems like with null its just way easier with
.to
Don't group the null in with the pipe that is confusing haha
oooooooo
beginning to feel like zod lmao
with the chaining
Sometimes chaining is the easiest way to do something
yea
Still tbh that doesn't look that much like Zod 😛
after. converting an internal api, and currently a public api from zod to arktype, arktype is 200x more legible
completely ignoring the performance of it, its just much nicer already
super duper impressed on the "typesafety" on the strings, that blows me away how thats even possible
Yeah TS strings are very impressive. Especially that they can be that precise and that fast!
finding myself reaching for
very nice
sorry dont mean to bother just having fun now
I'd probably do
.to("0 < number.integer < 23")
oh that second pipe should be to
wait they should both be to?
Well you can still abstract it out, but may as well validate the entire range at once? or they all have different max values
different max values
but all positive
to and pipe are same thing but to can parse a type def while pipe accepts a Type instance or a morph
I see
I was going to say neater to have all the output validation occur at once rather than introducing more sequentiality with two pipes, but internally it will just be reduced to a single range anyways so doesn't really matter
y'all merge the
.to
's where you can?Yeah everything in the type system is fully reduced + normalized so if you pipe between two types with no transforms, it's just an intersection
aight ima get back to work my heads going to explode if I continue to ask questions lmao this is incredible
Reductions like that are the coolest part of ArkType IMO
GLHF!
last thing i'll say, I'm using neovim and was worried about not having an extension that gives me hints on the type def strings, but was happily surprised its carried by TS
Yeah it was always TS-first with the extension just adding highlighting and error extraction. Would love to get support for other editors though if you're interested in translating the textmate rules.... LLMs must be pretty good at that kind of thing?
it would be my first foray into that level of neovim, when I get a chance I may look into it
no promises 😂