mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
add first, second free-function
add string::find
This commit is contained in:
parent
5ce2cb023c
commit
35f08fe242
13 changed files with 611 additions and 383 deletions
|
@ -726,9 +726,6 @@ namespace sprout {
|
|||
return holder.value();
|
||||
}
|
||||
|
||||
//
|
||||
// output
|
||||
//
|
||||
namespace detail {
|
||||
template<typename Elem, typename Iterator, std::size_t K, typename... Args>
|
||||
inline SPROUT_CONSTEXPR Elem
|
||||
|
@ -741,7 +738,9 @@ namespace sprout {
|
|||
)
|
||||
;
|
||||
}
|
||||
} // namespace detail
|
||||
|
||||
namespace detail {
|
||||
template<typename Elem, std::size_t N, sprout::index_t... Indexes, std::size_t K, typename... Args>
|
||||
inline SPROUT_CONSTEXPR sprout::basic_string<Elem, N>
|
||||
output_impl_1(sprout::index_tuple<Indexes...>, sprout::array<std::size_t, K> const& sizes, Args const&... args) {
|
||||
|
@ -777,6 +776,9 @@ namespace sprout {
|
|||
);
|
||||
}
|
||||
} // namespace detail
|
||||
//
|
||||
// output
|
||||
//
|
||||
template<std::size_t N, typename Elem, typename Expression>
|
||||
inline SPROUT_CONSTEXPR sprout::basic_string<Elem, N>
|
||||
output(Expression const& expr) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue