-
Updated
Oct 15, 2020 - D
traits
Here are 116 public repositories matching this topic...
-
Updated
Apr 14, 2020 - JavaScript
-
Updated
Jul 22, 2020 - JavaScript
-
Updated
Feb 23, 2019 - JavaScript
-
Updated
Nov 7, 2016 - JavaScript
Hi Taine,
In one of your example, you have
@trait Addable{L, R} begin
(+) :: [L, R] => Any
(+) = Base.:+
endI'd like to do something like this, but avoid the Any. I was thinking something like
@trait Addable{L, R, X} where {X = inferAddable(L,R)} begin
(+) :: [L, R] => X
(+) = Base.:+
endBut then I'm having trouble getting the `@i
-
Updated
Sep 21, 2020 - HTML
-
Updated
Aug 29, 2020 - Julia
What's here is the bare minimum necessary.
Three things I think are high priority:
- Add module documentation
- Fix doctests that don't pass (predominantly in the buffered mod)
- Add example patterns for making crates compatible with bare-io
If anybody would like guidance on this, please hit me up.
-
Updated
Sep 20, 2020 - Rust
-
Updated
Nov 23, 2019 - Go
-
Updated
Jan 9, 2020 - C#
-
Updated
Jan 18, 2020 - Python
-
Updated
Dec 19, 2019 - TypeScript
-
Updated
Oct 15, 2020 - PHP
-
Updated
Sep 23, 2019 - Python
-
Updated
Jul 19, 2017 - Java
-
Updated
Jul 5, 2020 - C++
-
Updated
Dec 4, 2019 - PHP
-
Updated
Dec 26, 2018 - PHP
Improve this page
Add a description, image, and links to the traits topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the traits topic, visit your repo's landing page and select "manage topics."


See https://github.com/enthought/pyface/blob/33542a4afd6452f08c18756229253b3d384e0da1/pyface/i_splash_screen.py#L31
Using an
Imagetrait here would mean that users could pass image names or paths instead ofImageResourceobjects.