Browse Source

aya: rename ProgramArray::keys to ProgramArray::indices

Alessandro Decina 4 years ago
parent
commit
9ad2a5e72d
1 changed files with 3 additions and 1 deletions
  1. 3 1
      aya/src/maps/array/program_array.rs

+ 3 - 1
aya/src/maps/array/program_array.rs

@@ -46,7 +46,9 @@ impl<T: Deref<Target = Map>> ProgramArray<T> {
         Ok(ProgramArray { inner: map })
         Ok(ProgramArray { inner: map })
     }
     }
 
 
-    pub unsafe fn keys<'coll>(&'coll self) -> MapKeys<'coll, u32> {
+    /// An iterator over the indices of the array that point to a program. The iterator item type
+    /// is `Result<u32, MapError>`.
+    pub unsafe fn indices(&self) -> MapKeys<'_, u32> {
         MapKeys::new(&self.inner)
         MapKeys::new(&self.inner)
     }
     }