CPP08 1.0
読み取り中…
検索中…
一致する文字列を見つけられません
Span.hpp ファイル

Provides a class that stores N integers and calculates their shortest and longest spans. [詳解]

#include <algorithm>
#include <iostream>
#include <iterator>
#include <stdexcept>
#include <vector>
Span.hpp の依存先関係図:
被依存関係図:

[ソースコード]

クラス

class  Span
 A class that stores up to N integers and calculates the shortest and longest spans. [詳解]
 
class  Span::SpanFullException
 Exception thrown when Span is full. [詳解]
 
class  Span::NotEnoughNumbersException
 An exception thrown when there are insufficient numbers to calculate the span. [詳解]
 

詳解

Provides a class that stores N integers and calculates their shortest and longest spans.

Span.hpp に定義があります。