mirror of
https://github.com/boostorg/hof.git
synced 2026-01-20 16:42:14 +00:00
10 lines
228 B
C++
10 lines
228 B
C++
#include <fit/rotate.hpp>
|
|
#include <fit/placeholders.hpp>
|
|
#include "test.hpp"
|
|
|
|
FIT_TEST_CASE()
|
|
{
|
|
FIT_TEST_CHECK(3 == fit::rotate(fit::_ - fit::_)(2, 5));
|
|
FIT_STATIC_TEST_CHECK(3 == fit::rotate(fit::_ - fit::_)(2, 5));
|
|
}
|