ccgsl 2.7.2
C++wrappersforGnuScientificLibrary
gsl::fft::real::wavetable Class Reference

C++ version of gsl_fft_real_wavetable functions. More...

#include <fft_real.hpp>

Collaboration diagram for gsl::fft::real::wavetable:
Collaboration graph

Public Member Functions

 wavetable ()
 The default constructor is only really useful for assigning to. More...
 
 wavetable (size_t const n)
 The default constructor creates a new workspace of size n. More...
 
 wavetable (gsl_fft_real_wavetable *v)
 Could construct from a gsl_fft_real_wavetable. More...
 
 wavetable (wavetable const &v)
 The copy constructor. More...
 
wavetableoperator= (wavetable const &v)
 The assignment operator. More...
 
 ~wavetable ()
 The destructor only deletes the pointers if count reaches zero. More...
 
 wavetable (wavetable &&v)
 Move constructor. More...
 
wavetableoperator= (wavetable &&v)
 Move operator. More...
 
bool operator== (wavetable const &v) const
 Two wavetable are identically equal if their elements are identical. More...
 
bool operator!= (wavetable const &v) const
 Two wavetable are different equal if their elements are not identical. More...
 
bool operator< (wavetable const &v) const
 A container needs to define an ordering for sorting. More...
 
bool operator> (wavetable const &v) const
 A container needs to define an ordering for sorting. More...
 
bool operator<= (wavetable const &v) const
 A container needs to define an ordering for sorting. More...
 
bool operator>= (wavetable const &v) const
 A container needs to define an ordering for sorting. More...
 
bool empty () const
 Find if the wavetable is empty. More...
 
void swap (wavetable &v)
 Swap two wavetable. More...
 
gsl_fft_real_wavetable * get () const
 Get the gsl_fft_real_wavetable. More...
 
bool unique () const
 Find if this is the only object sharing the gsl_fft_real_wavetable. More...
 
size_t use_count () const
 Find how many workspace objects share this pointer. More...
 
 operator bool () const
 Allow conversion to bool. More...
 

Private Attributes

gsl_fft_real_wavetable * ccgsl_pointer
 The shared pointer. More...
 
size_t * count
 The shared reference count. More...
 

Detailed Description

C++ version of gsl_fft_real_wavetable functions.

Definition at line 71 of file fft_real.hpp.

Constructor & Destructor Documentation

◆ wavetable() [1/5]

gsl::fft::real::wavetable::wavetable ( )
inline

The default constructor is only really useful for assigning to.

Definition at line 76 of file fft_real.hpp.

References ccgsl_pointer, and count.

Referenced by operator=().

◆ wavetable() [2/5]

gsl::fft::real::wavetable::wavetable ( size_t const  n)
inlineexplicit

The default constructor creates a new workspace of size n.

Parameters
nThe size of the workspace.

Definition at line 86 of file fft_real.hpp.

References ccgsl_pointer, count, and gsl::rstat::n().

◆ wavetable() [3/5]

gsl::fft::real::wavetable::wavetable ( gsl_fft_real_wavetable *  v)
inlineexplicit

Could construct from a gsl_fft_real_wavetable.

This is not usually a good idea. In this case you should not use gsl_fft_real_wavetable() to deallocate the memory.

Parameters
vThe wavetable

Definition at line 102 of file fft_real.hpp.

References ccgsl_pointer, and count.

◆ wavetable() [4/5]

gsl::fft::real::wavetable::wavetable ( wavetable const &  v)
inline

The copy constructor.

This creates a new reference to the workspace.

Parameters
vThe wavetable to copy.

Definition at line 113 of file fft_real.hpp.

References ccgsl_pointer, and count.

◆ ~wavetable()

gsl::fft::real::wavetable::~wavetable ( )
inline

The destructor only deletes the pointers if count reaches zero.

Definition at line 132 of file fft_real.hpp.

References ccgsl_pointer, and count.

◆ wavetable() [5/5]

gsl::fft::real::wavetable::wavetable ( wavetable &&  v)
inline

Move constructor.

Parameters
vThe wavetable to move.

Definition at line 144 of file fft_real.hpp.

References count.

Member Function Documentation

◆ empty()

bool gsl::fft::real::wavetable::empty ( ) const
inline

Find if the wavetable is empty.

Returns
true if has size zero; otherwise false

Definition at line 221 of file fft_real.hpp.

References ccgsl_pointer.

◆ get()

gsl_fft_real_wavetable * gsl::fft::real::wavetable::get ( ) const
inline

Get the gsl_fft_real_wavetable.

Returns
the gsl_fft_real_wavetable

Definition at line 247 of file fft_real.hpp.

References ccgsl_pointer.

Referenced by gsl::fft::real::transform().

◆ operator bool()

gsl::fft::real::wavetable::operator bool ( ) const
inlineexplicit

Allow conversion to bool.

Returns
true or false according as this contains a pointer to a gsl_fft_real_wavetable

Definition at line 267 of file fft_real.hpp.

References ccgsl_pointer.

◆ operator!=()

bool gsl::fft::real::wavetable::operator!= ( wavetable const &  v) const
inline

Two wavetable are different equal if their elements are not identical.

Parameters
vThe wavetable to be compared with this
Returns
false or true according as this and v have identical elements or not

Definition at line 174 of file fft_real.hpp.

References operator==().

◆ operator<()

bool gsl::fft::real::wavetable::operator< ( wavetable const &  v) const
inline

A container needs to define an ordering for sorting.

This uses standard lexicographical ordering and so is not useful, for eaxmple, for checking, that a wavetable is nonnegative.

Parameters
vThe wavetable to be compared with this
Returns
false or true according as this is less than v lexicographically

Definition at line 186 of file fft_real.hpp.

References ccgsl_pointer.

◆ operator<=()

bool gsl::fft::real::wavetable::operator<= ( wavetable const &  v) const
inline

A container needs to define an ordering for sorting.

This uses standard lexicographical ordering and so is not useful, for eaxmple, for checking, that a wavetable is nonnegative.

Parameters
vThe wavetable to be compared with this
Returns
false or true according as this is less than or equal to v lexicographically

Definition at line 206 of file fft_real.hpp.

References ccgsl_pointer.

◆ operator=() [1/2]

wavetable & gsl::fft::real::wavetable::operator= ( wavetable &&  v)
inline

Move operator.

Parameters
vThe wavetable to move.
Returns
A reference to this.

Definition at line 153 of file fft_real.hpp.

References wavetable().

◆ operator=() [2/2]

wavetable & gsl::fft::real::wavetable::operator= ( wavetable const &  v)
inline

The assignment operator.

This copies elementwise.

Parameters
vThe wavetable to copy

Definition at line 120 of file fft_real.hpp.

References ccgsl_pointer, and count.

◆ operator==()

bool gsl::fft::real::wavetable::operator== ( wavetable const &  v) const
inline

Two wavetable are identically equal if their elements are identical.

Parameters
vThe wavetable to be compared with this
Returns
true or false according as this and v have identical elements or not

Definition at line 166 of file fft_real.hpp.

References ccgsl_pointer.

Referenced by operator!=().

◆ operator>()

bool gsl::fft::real::wavetable::operator> ( wavetable const &  v) const
inline

A container needs to define an ordering for sorting.

This uses standard lexicographical ordering and so is not useful, for eaxmple, for checking, that a wavetable is nonnegative.

Parameters
vThe wavetable to be compared with this
Returns
false or true according as this is greater than v lexicographically

Definition at line 196 of file fft_real.hpp.

References ccgsl_pointer.

◆ operator>=()

bool gsl::fft::real::wavetable::operator>= ( wavetable const &  v) const
inline

A container needs to define an ordering for sorting.

This uses standard lexicographical ordering and so is not useful, for eaxmple, for checking, that a wavetable is nonnegative.

Parameters
vThe wavetable to be compared with this
Returns
false or true according as this is no less than v lexicographically

Definition at line 216 of file fft_real.hpp.

References ccgsl_pointer.

◆ swap()

void gsl::fft::real::wavetable::swap ( wavetable v)
inline

Swap two wavetable.

This works even if the wavetable have different sizes because it swaps pointers.

Parameters
vThe wavetable to swap with this.

Definition at line 228 of file fft_real.hpp.

References ccgsl_pointer, and count.

◆ unique()

bool gsl::fft::real::wavetable::unique ( ) const
inline

Find if this is the only object sharing the gsl_fft_real_wavetable.

Returns
true or falses according as this is the only workspace object sharing the gsl_fft_real_wavetable

Definition at line 253 of file fft_real.hpp.

References count.

◆ use_count()

size_t gsl::fft::real::wavetable::use_count ( ) const
inline

Find how many workspace objects share this pointer.

Returns
the number of workspace objects that share this pointer

Definition at line 258 of file fft_real.hpp.

References count.

Member Data Documentation

◆ ccgsl_pointer

gsl_fft_real_wavetable* gsl::fft::real::wavetable::ccgsl_pointer
private

◆ count

size_t* gsl::fft::real::wavetable::count
private

The shared reference count.

Definition at line 240 of file fft_real.hpp.

Referenced by operator=(), swap(), unique(), use_count(), wavetable(), and ~wavetable().


The documentation for this class was generated from the following file: