Viskores  1.0
Classes | Namespaces | Functions
ArrayHandleBasic.h File Reference
#include <viskores/cont/ArrayHandle.h>
#include <viskores/cont/ArrayPortalToIterators.h>
#include <viskores/cont/SerializableTypeString.h>
#include <viskores/cont/Serialization.h>
#include <viskores/cont/Storage.h>
#include <viskores/internal/ArrayPortalBasic.h>
#include <viskores/VecFlat.h>
#include <limits>

Go to the source code of this file.

Classes

class  viskores::cont::ArrayHandleBasic< T >
 Basic array storage for an array handle. More...
 

Namespaces

 viskores
 Groups connected points that have the same field value.
 
 viskores::cont
 Viskores Control Environment.
 

Functions

template<typename T >
viskores::cont::ArrayHandleBasic< T > viskores::cont::make_ArrayHandle (const T *array, viskores::Id numberOfValues, viskores::CopyFlag copy)
 A convenience function for creating an ArrayHandle from a standard C array. More...
 
template<typename T >
viskores::cont::ArrayHandleBasic< T > viskores::cont::make_ArrayHandleMove (T *&array, viskores::Id numberOfValues, viskores::cont::internal::BufferInfo::Deleter deleter=internal::SimpleArrayDeleter< T >, viskores::cont::internal::BufferInfo::Reallocater reallocater=internal::SimpleArrayReallocater< T >)
 A convenience function to move a user-allocated array into an ArrayHandle. More...
 
template<typename T , typename Allocator >
viskores::cont::ArrayHandleBasic< T > viskores::cont::make_ArrayHandle (const std::vector< T, Allocator > &array, viskores::CopyFlag copy)
 A convenience function for creating an ArrayHandle from an std::vector. More...
 
template<typename T , typename Allocator >
viskores::cont::ArrayHandleBasic< T > viskores::cont::make_ArrayHandleMove (std::vector< T, Allocator > &&array)
 Move an std::vector into an ArrayHandle. More...
 
template<typename T , typename Allocator >
viskores::cont::ArrayHandleBasic< T > viskores::cont::make_ArrayHandle (std::vector< T, Allocator > &&array, viskores::CopyFlag)
 Move an std::vector into an ArrayHandle. More...
 
template<typename T >
viskores::cont::ArrayHandleBasic< T > viskores::cont::make_ArrayHandle (std::initializer_list< T > &&values)
 Create an ArrayHandle directly from an initializer list of values. More...