Support SignedInteger
where RawValue: SignedInteger
#81
Unanswered
benjohnbarnes
asked this question in
Q&A
Replies: 1 comment
-
@benjohnbarnes We'd be down for a pull request if you'd like to submit one! Because this is an additive feature and not a bug, though, I'm going to convert to a discussion for now. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In a current project I am using
Tagged
as theInterval
of a typeNote
conforming toStrideable
. This works great as far as it goes. However, I have aClosedRange<Note>
on which I would like to be able to computecount
. This requiresTagged
conform toSignedInteger where RawValue: SignedInteger
.Tagged
has a number of conditional conformances and does conditionally supportNumeric
andSignedNumeric
, there currently is not support forSignedInteger
as far as I can tell. I'm curious if this was intentionally left out, or if it would be reasonable to add?Beta Was this translation helpful? Give feedback.
All reactions