LSSTApplications  18.1.0
LSSTDataManagementBasePackage
Public Member Functions | List of all members
lsst::afw::image::pixel::bitwise_or< T1 > Struct Template Reference

bitwise_or doesn't seem to be in std:: More...

#include <Pixel.h>

Inheritance diagram for lsst::afw::image::pixel::bitwise_or< T1 >:
std::binary_function< T1, T1, T1 >

Public Member Functions

T1 operator() (const T1 &x, const T1 &y) const
 
T1 operator() (const T1 &x) const
 

Detailed Description

template<typename T1>
struct lsst::afw::image::pixel::bitwise_or< T1 >

bitwise_or doesn't seem to be in std::

Note
We provide a single-operand version for when the right-hand-side of an expression is a scalar, not a masked pixel,

Definition at line 45 of file Pixel.h.

Member Function Documentation

◆ operator()() [1/2]

template<typename T1 >
T1 lsst::afw::image::pixel::bitwise_or< T1 >::operator() ( const T1 &  x,
const T1 &  y 
) const
inline

Definition at line 349 of file Pixel.h.

349 { return (x | y); }
int y
Definition: SpanSet.cc:49
double x

◆ operator()() [2/2]

template<typename T1 >
T1 lsst::afw::image::pixel::bitwise_or< T1 >::operator() ( const T1 &  x) const
inline

Definition at line 350 of file Pixel.h.

350 { return x; }
double x

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