MCPcopy Create free account
hub / github.com/KDE/labplot / andFunction

Function andFunction

src/backend/gsl/functions.cpp:896–898  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

894}
895
896double andFunction(const double v1, const double v2) {
897 return (convertDoubleToBool(v1) && convertDoubleToBool(v2));
898}
899
900double orFunction(const double v1, const double v2) {
901 return (convertDoubleToBool(v1) || convertDoubleToBool(v2));

Callers

nothing calls this directly

Calls 1

convertDoubleToBoolFunction · 0.85

Tested by

no test coverage detected