unitalicize O(1) complexities
This commit is contained in:
parent
cb1c06fdd8
commit
cebba31d4a
1 changed files with 4 additions and 4 deletions
|
@ -658,7 +658,7 @@ impl<T> LinkedList<T> {
|
||||||
/// Provides a reference to the front element, or `None` if the list is
|
/// Provides a reference to the front element, or `None` if the list is
|
||||||
/// empty.
|
/// empty.
|
||||||
///
|
///
|
||||||
/// This operation should compute in *O*(*1*) time.
|
/// This operation should compute in *O*(1) time.
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
|
@ -680,7 +680,7 @@ impl<T> LinkedList<T> {
|
||||||
/// Provides a mutable reference to the front element, or `None` if the list
|
/// Provides a mutable reference to the front element, or `None` if the list
|
||||||
/// is empty.
|
/// is empty.
|
||||||
///
|
///
|
||||||
/// This operation should compute in *O*(*1*) time.
|
/// This operation should compute in *O*(1) time.
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
|
@ -708,7 +708,7 @@ impl<T> LinkedList<T> {
|
||||||
/// Provides a reference to the back element, or `None` if the list is
|
/// Provides a reference to the back element, or `None` if the list is
|
||||||
/// empty.
|
/// empty.
|
||||||
///
|
///
|
||||||
/// This operation should compute in *O*(*1*) time.
|
/// This operation should compute in *O*(1) time.
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
|
@ -730,7 +730,7 @@ impl<T> LinkedList<T> {
|
||||||
/// Provides a mutable reference to the back element, or `None` if the list
|
/// Provides a mutable reference to the back element, or `None` if the list
|
||||||
/// is empty.
|
/// is empty.
|
||||||
///
|
///
|
||||||
/// This operation should compute in *O*(*1*) time.
|
/// This operation should compute in *O*(1) time.
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue