43template <
typename TransformationType,
typename TransformableType>
44void transform(
const TransformationType& T, TransformableType& transformable) {
45 transformable.transform(T);
60template <
typename TransformationType,
typename First,
typename... Others>
61void transform(
const TransformationType& T, First& first, Others&... others) {
82template <
typename RotationType,
typename RotatableType>
83void rotate(
const RotationType& U, RotatableType& rotatable) {
99template <
typename RotationType,
typename First,
typename... Others>
100void rotate(
const RotationType& U, First& first, Others&... others) {
Definition: BaseOneElectronIntegralBuffer.hpp:25
void rotate(const RotationType &U, RotatableType &rotatable)
Definition: transform.hpp:83
void transform(const TransformationType &T, TransformableType &transformable)
Definition: transform.hpp:44