Skip to content
#

traits

Here are 154 public repositories matching this topic...

bbqsrc
bbqsrc commented Oct 11, 2020

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 core2

If anybody would like guidance on this, please hit me up.

documentation help wanted good first issue
cscherrer
cscherrer commented Jan 26, 2020

Hi Taine,

In one of your example, you have

@trait Addable{L, R} begin
    (+) :: [L, R] => Any
    (+) = Base.:+
end

I'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.:+
end

But then I'm having trouble getting the `@i

good first issue

Improve this page

Add a description, image, and links to the traits topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the traits topic, visit your repo's landing page and select "manage topics."

Learn more