This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdint> | |
#include <cstdlib> | |
#include <type_traits> | |
#include <utility> | |
#include <memory> | |
#include <range/v3/core.hpp> | |
#include <range/v3/span.hpp> | |
#include <range/v3/action/insert.hpp> | |
#include <range/v3/numeric/accumulate.hpp> | |
#include <range/v3/utility/functional.hpp> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <type_traits> | |
template<typename T, bool = std::is_default_constructible_v<T> && !std::is_array_v<T>> | |
struct constexpr_instance; | |
template<typename T> | |
struct constexpr_instance<T, true> { | |
constexpr T operator ()() const { return {}; } | |
}; | |
namespace detail { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Nice Reddit | |
// @namespace com.prahladyeri.userscripts.nice_reddit | |
// @creator [email protected] | |
// @description Beautify your Reddit! | |
// @homepage http://www.prahladyeri.com | |
// @include http://*.reddit.com/* | |
// @include https://*.reddit.com/* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js | |
// @version 1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdint> | |
#include <type_traits> | |
#include <string_view> | |
#include <string> | |
#include <range/v3/core.hpp> | |
#include <boost/hana/core/is_a.hpp> | |
#include <boost/hana/functional/compose.hpp> | |
#include <boost/hana/functional/partial.hpp> | |
#include <boost/hana/at.hpp> | |
#include <boost/hana/at_key.hpp> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Left base folder: C:\libs\boost_1_65_0_unpatched | |
Right base folder: C:\libs\boost_1_65_0_dod | |
--- boost\algorithm\cxx14\equal.hpp 2017-08-19 09:49:39.000000000 -0700 | |
+++ boost\algorithm\cxx14\equal.hpp 2017-08-21 15:24:58.000000000 -0700 | |
@@ -18,12 +18,15 @@ | |
namespace boost { namespace algorithm { | |
namespace detail { | |
template <class T1, class T2> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Left base folder: C:\libs\boost_1_65_0_unpatched | |
Right base folder: C:\libs\boost_1_65_0_dod | |
--- boost\algorithm\cxx14\equal.hpp 2017-08-19 09:49:39.000000000 -0700 | |
+++ boost\algorithm\cxx14\equal.hpp 2017-08-21 15:24:58.000000000 -0700 | |
@@ -18,12 +18,15 @@ | |
namespace boost { namespace algorithm { | |
namespace detail { | |
template <class T1, class T2> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define BOOST_HANA_CONFIG_ENABLE_STRING_UDL 1 | |
#include <type_traits> | |
#include <utility> | |
#include <optional> | |
#include <string_view> | |
#include <array> | |
#include <range/v3/core.hpp> | |
#include <range/v3/algorithm/lower_bound.hpp> | |
#include <boost/hana.hpp> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![feature(iter_map_while)] | |
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd)] | |
#[repr(align(2))] | |
pub struct Element([u8; 2]); | |
impl Element { | |
fn as_str(&self) -> &str { | |
let s = if self.0[1] == 0 { &self.0[..1] } else { &self.0 }; | |
unsafe { std::str::from_utf8_unchecked(s) } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdint> | |
#include <type_traits> | |
#include <utility> | |
#include <optional> | |
#include <string_view> | |
#include <array> | |
#include <vector> | |
#include <boost/container/flat_map.hpp> | |
#include <boost/fusion/include/adapt_struct.hpp> | |
#include <boost/spirit/home/x3/core.hpp> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![feature(ascii_ctype, attr_literals, const_fn, iterator_for_each, repr_align)] | |
#![cfg_attr(not(debug_assertions), feature(core_intrinsics))] | |
#![cfg_attr(test, feature(test))] | |
#[macro_use] | |
extern crate lazy_static; | |
extern crate rayon; | |
extern crate simd; | |
#[cfg(test)] |
NewerOlder