Skip to content

Commit

Permalink
Document Choice::Tag and remove unintended macros from being public
Browse files Browse the repository at this point in the history
  • Loading branch information
danakj committed Dec 20, 2023
1 parent 09da844 commit a36b35a
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 10 deletions.
10 changes: 10 additions & 0 deletions sus/choice/choice.h
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,16 @@ struct CanConvertToStorage<I, ::sus::tuple_type::Tuple<Ts...>, U> {
/// }
/// }
/// ```
/// `Choice` will re-export the tag value type as a nested `Tag` subtype. This
/// allows access to the Choice's values though `MyChoiceType::Tag::Name`.
/// ```
/// enum class Order { First, Second };
/// using EitherOr = Choice<sus_choice_types(
/// (Order::First, u64),
/// (Order::Second, u32)
/// )>;
/// auto x = EitherOr::with<EitherOr::Tag::First>(987u);
/// ```
template <class... Ts, auto... Tags>
class Choice<__private::TypeList<Ts...>, Tags...> final {
static_assert(sizeof...(Ts) > 0,
Expand Down
13 changes: 9 additions & 4 deletions sus/choice/choice_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,14 @@
#include "sus/macros/remove_parens.h"
#include "sus/tuple/tuple.h"

/// Construct a set of associated value and types pairings. The type of the
/// A macro used to declare the value-type pairings in a [`Choice`](
/// $sus::choice_type::Choice). See the [`Choice`](
/// $sus::choice_type::Choice) type for examples of its use.
///
/// Constructs a set of associated value and types pairings. The type of the
/// values need have no relationship to the specified types.
///
/// # Details
/// The input takes the format: `(Value1, Type1A, Type1B), (Value2, Type2), ...`
/// The output is the sequence `TypeList<Tuple<Type1A, Type1B>, Tuple<Type2>,
/// ...>, Value1, Value2, ...`.
Expand Down Expand Up @@ -60,11 +65,11 @@
// clang-format on

#define _sus__make_union_storage_type(types) \
::sus::choice_type::__private::MakeStorageType<sus_remove_parens(types)>::type
::sus::choice_type::__private::MakeStorageType<_sus_remove_parens(types)>::type

#define _sus__first(a, ...) a
#define _sus__second_plus(a, ...) __VA_ARGS__

#define _sus__value_types_types(x) \
(sus_remove_parens_and_eval(_sus__second_plus, x))
#define _sus__value_types_value(x) sus_remove_parens_and_eval(_sus__first, x)
(_sus_remove_parens_and_eval(_sus__second_plus, x))
#define _sus__value_types_value(x) _sus_remove_parens_and_eval(_sus__first, x)
6 changes: 6 additions & 0 deletions sus/choice/choice_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1026,6 +1026,12 @@ TEST(Choice, Example_Construct) {
}
}
}
{
enum class Order { First, Second };
using EitherOr =
Choice<sus_choice_types((Order::First, u64), (Order::Second, u32))>;
auto x = EitherOr::with<EitherOr::Tag::First>(987u);
}
}

} // namespace
4 changes: 2 additions & 2 deletions sus/macros/eval_macro.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/// # Example
/// ```
/// #define f(s) hello(s)
/// sus_eval_macro(f, "world")
/// _sus_eval_macro(f, "world")
/// // Evaluates to: `hello("world")`
/// ```
#define sus_eval_macro(x, ...) x(__VA_ARGS__)
#define _sus_eval_macro(x, ...) x(__VA_ARGS__)
8 changes: 4 additions & 4 deletions sus/macros/remove_parens.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
/// * `(x, y)` => `x, y`
///
/// Based on: https://stackoverflow.com/a/62984543
#define sus_remove_parens(x) _sus__remove_inner_rename(_sus__remove_inner x)
#define _sus_remove_parens(x) _sus__remove_inner_rename(_sus__remove_inner x)

#define sus_remove_parens_and_eval(e, x) \
sus_eval_macro(e, sus_remove_parens(x))
#define _sus_remove_parens_and_eval(e, x) \
_sus_eval_macro(e, _sus_remove_parens(x))

// Implementation of sus_remove_parens(x).
// Implementation of _sus_remove_parens(x).

// Step 1: If the input had brackets, now it no longer does. The result will
// always be `_sus__remove_inner x` at the end.
Expand Down

0 comments on commit a36b35a

Please sign in to comment.