mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-10-19 13:49:23 +00:00
add sprout::string_ref
support conversion array-like container iterator to pointer
This commit is contained in:
parent
fa1d769bdf
commit
1ef8a6a63b
64 changed files with 1570 additions and 254 deletions
|
@ -33,8 +33,8 @@ namespace sprout {
|
|||
public:
|
||||
typedef unsigned long word_type;
|
||||
typedef word_type value_type;
|
||||
typedef sprout::index_iterator<base_bitset&> iterator;
|
||||
typedef sprout::index_iterator<base_bitset const&> const_iterator;
|
||||
typedef sprout::index_iterator<base_bitset&, true> iterator;
|
||||
typedef sprout::index_iterator<base_bitset const&, true> const_iterator;
|
||||
typedef value_type& reference;
|
||||
typedef value_type const& const_reference;
|
||||
typedef std::size_t size_type;
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
#define SPROUT_BITSET_HASH_HPP
|
||||
|
||||
#include <cstddef>
|
||||
#include <functional>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/bitset/bitset.hpp>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue