We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Much in the same way that TypeScript allows for Union Types, we can allow for Union Types in the interface package.
TypeScript
Union Types
interface
CharNumList <- interface("list", value = c("character", "numeric") ) # Implement the interface list1 <- implement(CharNumList, list("John", 30)) Df <- interface("data.frame", name = "character", height = c("numeric", "character"), age = "numeric" )
The text was updated successfully, but these errors were encountered:
dereckmezquita
No branches or pull requests
Description
Much in the same way that
TypeScript
allows forUnion Types
, we can allow forUnion Types
in theinterface
package.Implementation Ideas
The text was updated successfully, but these errors were encountered: