File: api.md

package info (click to toggle)
rust-coreutils 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 505,620 kB
  • sloc: ansic: 103,594; asm: 28,570; sh: 8,910; python: 5,581; makefile: 472; cpp: 97; javascript: 72
file content (14 lines) | stat: -rw-r--r-- 751 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Port of the `[bool]` Inherent API

This module provides a port of the standard-library’s slice primitive, and
associated special-purpose items.

It is intended to contain the contents of every `impl<T> [T]` block in the
standard library (with a few exceptions due to impossibility or uselessness).
The sibling modules `iter`, `ops`, and `traits` contain slice APIs that relate
specifically to iteration, the sigil operators, or general-purpose traits.

Documentation for each ported API strives to be *inspired by*, but not a
transliteration of, the documentation in the standard library. `bitvec`
generally assumes that you are already familiar with the standard library, and
links each ported item to the original in the event that you are not.