![]() |
CUSP
|
#include <functional.h>
Public Methods | |
| _CCCL_HOST_DEVICE T | operator() (const T &x) const |
Return the square root of x. | |
sqrt_functor is a function object that computes the square root of a given element.
| T | is a model of Assignable, and if x is an object of type T, then x=c must be defined and must have a return type that is convertible to T. |
sqrt_functor is a function object. Specifically, it is an Adaptable Unary Function. If f(c) is an object of class sqrt_functor<T>, and x is an object of class T, then f(x) returns sqrt(x).Definition at line 530 of file functional.h.
|
inline |
Return the square root of x.
Definition at line 534 of file functional.h.