-
Notifications
You must be signed in to change notification settings - Fork 76
Array btreemap conversion #520
New issue
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
Array btreemap conversion #520
Conversation
Pull Request Test Coverage Report for Build 16353578993Details
💛 - Coveralls |
@kakserpom thank you <3 Just some things:
|
d7f9aa4
to
085a547
Compare
@Xenira Sure, now it's split into two MRs. I don't believe there's anything to test. |
085a547
to
83cb3de
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Think having unit and integration tests is an easy win here.
Can add them myself if you like.
impl<'a, V> TryFrom<&'a ZendHashTable> for BTreeMap<String, V> | ||
where | ||
V: FromZval<'a>, | ||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we do this here? Same for the others.
impl<'a, V> TryFrom<&'a ZendHashTable> for BTreeMap<String, V> | |
where | |
V: FromZval<'a>, | |
{ | |
impl<'a, K, V> TryFrom<&'a ZendHashTable> for BTreeMap<K, V> | |
where | |
K: TryFrom<ArrayKey<'a>, Error = Error>, | |
V: FromZval<'a>, | |
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Xenira Not sure this is a good idea.
hey! we split array.rs into smaller files. You can rebase and create a dedicated |
No description provided.