rascala

Results 12 comments of rascala

@thienpow I haven't used it but looks like you have to set the **value** prop of Select like ... You can go through the code at https://github.com/esbenp/react-native-clean-form/blob/master/src/Select.js , look for...

@thienpow In the example [https://github.com/esbenp/react-native-clean-form/blob/master/example/src/Form.js](url), if I change the value to 'US' or 'DE', then the correct label is pre-selected for me ``` ``` I am not using redux

Damn.. Sorry! 🤣 Switch works for me.. Maybe post your code?

Thanks, will give it a try

Sorry, been a bit busy! Still having some trouble with this. The core file seems to generate a `get_` function. So using var.Groups in f# seems to generate ``` 'System.Text.RegularExpressions.Match':get_Groups(#{'Captures'...

Thanks, I have a very basic regex working(without global-match etc.), but its very ugly with different files for `Capture/CaptureCollection/Group/GroupCollection/Match/Regex` types and respective `get_`s all over. But it works! And returns...

Could it be done as a NIF? Store an array of pointers to blobs with some methods to manage it? How much work would it be?

Unfortunately, f# is a second class citizen on its native platform, common actions like type-casting throw exceptions instead of using option/either types. And the OOP is pervasive. I was looking...

The Fable compatibility docs are what I've been looking at, you might find some answers there. https://fable-compiler.github.io/docs/compatibility.html If we can gain parity with those, we'd be in a good place...

Yes, we probably need to change how we approach the problems a bit. Makes it more interesting 😄 One erlang way to write a sudoku solver would probably be to...