• Home
  • Raw
  • Download

Lines Matching refs:cn

1583     static auto range(T first, T last, std::ptrdiff_t step, Coordination cn)  in range()  argument
1584 -> decltype(rxs::range<T>(first, last, step, std::move(cn))) { in range()
1585 return rxs::range<T>(first, last, step, std::move(cn)); in range()
1590 static auto range(T first, T last, Coordination cn) in range() argument
1591 -> decltype(rxs::range<T>(first, last, std::move(cn))) { in range()
1592 return rxs::range<T>(first, last, std::move(cn)); in range()
1597 static auto range(T first, Coordination cn) in range() argument
1598 -> decltype(rxs::range<T>(first, std::move(cn))) { in range()
1599 return rxs::range<T>(first, std::move(cn)); in range()
1629 static auto interval(rxsc::scheduler::clock_type::duration period, Coordination cn) in interval() argument
1630 -> decltype(rxs::interval(period, std::move(cn))) { in interval()
1631 return rxs::interval(period, std::move(cn)); in interval()
1644 …ler::clock_type::time_point initial, rxsc::scheduler::clock_type::duration period, Coordination cn) in interval() argument
1645 -> decltype(rxs::interval(initial, period, std::move(cn))) { in interval()
1646 return rxs::interval(initial, period, std::move(cn)); in interval()
1668 static auto timer(rxsc::scheduler::clock_type::time_point when, Coordination cn) in timer() argument
1669 -> decltype(rxs::timer(when, std::move(cn))) { in timer()
1670 return rxs::timer(when, std::move(cn)); in timer()
1675 static auto timer(rxsc::scheduler::clock_type::duration when, Coordination cn) in timer() argument
1676 -> decltype(rxs::timer(when, std::move(cn))) { in timer()
1677 return rxs::timer(when, std::move(cn)); in timer()
1690 static auto iterate(Collection c, Coordination cn) in iterate() argument
1691 -> decltype(rxs::iterate(std::move(c), std::move(cn))) { in iterate()
1692 return rxs::iterate(std::move(c), std::move(cn)); in iterate()
1705 static auto from(Coordination cn) in from() argument
1707 decltype( rxs::from<T>(std::move(cn)))>::type { in from()
1708 return rxs::from<T>(std::move(cn)); in from()
1721 static auto from(Coordination cn, Value0 v0, ValueN... vn) in from() argument
1723 decltype( rxs::from(std::move(cn), v0, vn...))>::type { in from()
1724 return rxs::from(std::move(cn), v0, vn...); in from()
1737 static auto just(T v, Coordination cn) in just() argument
1738 -> decltype(rxs::just(std::move(v), std::move(cn))) { in just()
1739 return rxs::just(std::move(v), std::move(cn)); in just()
1760 static auto empty(Coordination cn) in empty() argument
1761 -> decltype(from<T>(std::move(cn))) { in empty()
1762 return from<T>(std::move(cn)); in empty()
1775 static auto error(Exception&& e, Coordination cn) in error() argument
1776 -> decltype(rxs::error<T>(std::forward<Exception>(e), std::move(cn))) { in error()
1777 return rxs::error<T>(std::forward<Exception>(e), std::move(cn)); in error()