scapix
scapix copied to clipboard
Supported stl types?
Is there some documentation that covers which stl types are supported? I tried std::shared_ptr which appears to work nicely, but I also wanted to use std::future but without any luck ("!UNKNOWN!").
Doh! Just noticed https://www.scapix.com/documentation/types/ - Though I'm still going to leave this open as I'm curious about std::future support
Could you please provide an example of how would you like to use std::future with Scapix? Using any of the "client" languages.
Interesting stuff, looks really nice!
Do you have plans to support std::unique_ptr
?
+1 for std::unique_ptr
Also, std::optional
is very convenient and could've been bridged as an explicit "nullable type" in the client languages.
And I think it would be better to explicitly specify enum class
as a supported type. The fact that it isn't currently specified left me wondering if it is supported, but after generating an interface for a method with an enum class
parameter it seems like it is indeed supported the same way a regular enum
is.