Struct linked_array::Term [] [src]

pub struct Term;

The type used for an empty array or array terminator.

Trait Implementations

impl Copy for Term
[src]

impl Clone for Term
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Term
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for Term
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for Term
[src]

impl PartialOrd for Term
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for Term
[src]

[src]

This method returns an Ordering between self and other. Read more

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl<T> Array<T> for Term
[src]

[src]

Access the element at idx, or None if out of bounds.

[src]

Get the compile-time length of the array.

[src]

Since the in-memory representation should be the same as a traditional array, it should be safe to read the pointer as one. However, since the rust specification makes memory layout undefined, it is held behind unsafe. Read more

[src]

A conveinence wrapper around len that takes a refernce to facilitate using the right type.

impl<T, S> Map<T, S> for Term
[src]

The resulting Array from performing the map.

[src]

Transform the elements of the array using the provided function.

Auto Trait Implementations

impl Send for Term

impl Sync for Term