Skip to content
Ned Bingham edited this page Mar 8, 2017 · 26 revisions

std/fill.h


template <class value_type> struct fill

Stores a counted number of duplicate elements.

Member Types

Member Variables

  • value_type value represents the value of all of the elements stored.
  • int count represents the number of elements this container stores.

Member Functions

Constructor

Constructs a fill, initializing its contents depending on the constructor version used. There is no default constructor.

  • fill(int count, value_type value) sets count and value directly.
  • fill(const_iterator left, const_iterator right) where left and right demarcate the bounds of another fill container. This sets count to right-left and value to the value pointed to by left.

Utility

Basic functions necessary for algorithm execution.

  • int size() returns the value of count.

Iterators

  • const_iterator begin() returns an iterator to the first element.
  • const_iterator end() returns an iterator to one after the last element.
  • const_iterator rbegin() returns an iterator to the last element.
  • const_iterator rend() returns an iterator to one before the first element.
  • const_iterator at(int i) returns an iterator to the ith element.

Accessors

  • value_type front() returns value.
  • value_type back() returns value.
  • value_type get(int i) returns value
  • value_type operator[](int i) returns value

Slicing

Modifiers

Non-Member Functions

Comparison

Compares two fill containers by comparing value followed by count.

  • bool operator==(fill<value_type1> s1, fill<value_type2> s2)
  • bool operator!=(fill<value_type1> s1, fill<value_type2> s2)
  • bool operator<(fill<value_type1> s1, fill<value_type2> s2)
  • bool operator>(fill<value_type1> s1, fill<value_type2> s2)
  • bool operator<=(fill<value_type1> s1, fill<value_type2> s2)
  • bool operator>=(fill<value_type1> s1, fill<value_type2> s2) Compares a fill container to a generic slice by calling compare().
  • bool operator==(fill<value_type1> s1, core::slice<container2> s2)
  • bool operator!=(fill<value_type1> s1, core::slice<container2> s2)
  • bool operator<(fill<value_type1> s1, core::slice<container2> s2)
  • bool operator>(fill<value_type1> s1, core::slice<container2> s2)
  • bool operator<=(fill<value_type1> s1, core::slice<container2> s2)
  • bool operator>=(fill<value_type1> s1, core::slice<container2> s2)
  • bool operator==(core::slice<container1> s1, fill<value_type2> s2)
  • bool operator!=(core::slice<container1> s1, fill<value_type2> s2)
  • bool operator<(core::slice<container1> s1, fill<value_type2> s2)
  • bool operator>(core::slice<container1> s1, fill<value_type2> s2)
  • bool operator<=(core::slice<container1> s1, fill<value_type2> s2)
  • bool operator>=(core::slice<container1> s1, fill<value_type2> s2)

Examples

#include <std/ascii_stream.h>
#include <std/fill.h>

using namespace core;

int main()
{
    fill<int> f(0, 10);
    cout << f << endl;
    return 0;
}

Simple Containers

Standard Containers

Interface Containers

Specialized Containers

Input/Output

Algorithm

Clone this wiki locally