We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30e7004 commit 8c4a7aeCopy full SHA for 8c4a7ae
src/types/array.rs
@@ -524,7 +524,7 @@ impl ZendHashTable {
524
/// let mut ht = ZendHashTable::new();
525
///
526
/// for (key, val) in ht.iter() {
527
- /// match key {
+ /// match &key {
528
/// ArrayKey::Long(index) => {
529
/// }
530
/// ArrayKey::String(key) => {
src/types/mod.rs
@@ -13,7 +13,7 @@ mod object;
13
mod string;
14
mod zval;
15
16
-pub use array::{ZendHashTable, ArrayKey};
+pub use array::{ArrayKey, ZendHashTable};
17
pub use callable::ZendCallable;
18
pub use class_object::ZendClassObject;
19
pub use iterable::Iterable;
0 commit comments