1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649
|
/*
* Copyright (C) 2024-2025 Samuel Weinig <sam@webkit.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include "CSSValueConcepts.h"
#include "CSSValueKeywords.h"
#include "RectEdges.h"
#include <optional>
#include <tuple>
#include <utility>
#include <variant>
#include <wtf/Markable.h>
#include <wtf/StdLibExtras.h>
#include <wtf/Vector.h>
#include <wtf/text/AtomString.h>
namespace WebCore {
// Types that specialize TreatAsTupleLike or TreatAsRangeLike can specialize this to
// indicate how to serialize the gaps between elements.
template<typename> inline constexpr ASCIILiteral SerializationSeparator = ""_s;
// Helper to define a simple `get()` implementation for a single value `name`.
#define DEFINE_TYPE_WRAPPER_GET(t, name) \
template<size_t> const auto& get(const t& value) { return value.name; }
// Helper to define a type by extending another type via inheritance.
#define DEFINE_TYPE_EXTENDER(wrapper, wrapped) \
struct wrapper : wrapped { \
WTF_MAKE_STRUCT_FAST_ALLOCATED; \
using Wrapped = wrapped; \
using Wrapped::Wrapped; \
template<size_t I> friend const auto& get(const wrapper& self) \
{ \
return get<I>(static_cast<const wrapped&>(self)); \
} \
bool operator==(const wrapper&) const = default; \
};
// Helper to define a type via direct wrapping of another type.
#define DEFINE_TYPE_WRAPPER(wrapper, wrapped) \
struct wrapper { \
WTF_MAKE_STRUCT_FAST_ALLOCATED; \
using Wrapped = wrapped; \
wrapped value; \
template<typename... Args> \
wrapper(Args&&... args) requires (requires { { wrapped(args...) }; }) \
: value(std::forward<Args>(args)...) \
{ \
} \
const Wrapped& operator*() const { return value; } \
Wrapped& operator*() { return value; } \
const Wrapped* operator->() const { return &value; } \
Wrapped* operator->() { return &value; } \
template<size_t> friend const auto& get(const wrapper& self) \
{ \
return self.value; \
} \
bool operator==(const wrapper&) const = default; \
};
// Helper to define a tuple-like conformance for a type with `numberOfArguments` arguments.
#define DEFINE_TUPLE_LIKE_CONFORMANCE(t, numberOfArguments) \
namespace std { \
template<> class tuple_size<t> : public std::integral_constant<size_t, numberOfArguments> { }; \
template<size_t I> class tuple_element<I, t> { \
public: \
using type = decltype(get<I>(std::declval<t>())); \
}; \
} \
template<> inline constexpr bool WebCore::TreatAsTupleLike<t> = true;
// Helper to define a tuple-like conformance and that the type should be serialized as space separated.
#define DEFINE_SPACE_SEPARATED_TUPLE_LIKE_CONFORMANCE(t, numberOfArguments) \
DEFINE_TUPLE_LIKE_CONFORMANCE(t, numberOfArguments) \
template<> inline constexpr ASCIILiteral WebCore::SerializationSeparator<t> = " "_s;
// Helper to define a tuple-like conformance and that the type should be serialized as comma separated.
#define DEFINE_COMMA_SEPARATED_TUPLE_LIKE_CONFORMANCE(t, numberOfArguments) \
DEFINE_TUPLE_LIKE_CONFORMANCE(t, numberOfArguments) \
template<> inline constexpr ASCIILiteral WebCore::SerializationSeparator<t> = ", "_s;
// Helper to define a tuple-like conformance based on the type being extended.
#define DEFINE_TUPLE_LIKE_CONFORMANCE_FOR_TYPE_EXTENDER(t) \
DEFINE_TUPLE_LIKE_CONFORMANCE(t, std::tuple_size_v<t::Wrapped>) \
template<> inline constexpr ASCIILiteral WebCore::SerializationSeparator<t> = WebCore::SerializationSeparator<t::Wrapped>;
// Helper to define a tuple-like conformance for a wrapper type.
#define DEFINE_TUPLE_LIKE_CONFORMANCE_FOR_TYPE_WRAPPER(t) \
DEFINE_TUPLE_LIKE_CONFORMANCE(t, 1)
// MARK: - Conforming Existing Types
// - Optional-like
template<typename T> inline constexpr auto TreatAsOptionalLike<std::optional<T>> = true;
template<typename T> inline constexpr auto TreatAsOptionalLike<WTF::Markable<T>> = true;
// - Tuple-like
template<typename... Ts> inline constexpr auto TreatAsTupleLike<std::tuple<Ts...>> = true;
// - Variant-like
template<typename... Ts> inline constexpr auto TreatAsVariantLike<std::variant<Ts...>> = true;
// MARK: - Standard Leaf Types
// Helper type used to represent an arbitrary constant identifier.
struct CustomIdentifier {
AtomString value;
bool operator==(const CustomIdentifier&) const = default;
bool operator==(const AtomString& other) const { return value == other; }
};
WTF::TextStream& operator<<(WTF::TextStream&, const CustomIdentifier&);
// MARK: - Standard Aggregates
// Helper type used to represent a CSS function.
template<CSSValueID C, typename T> struct FunctionNotation {
WTF_MAKE_STRUCT_FAST_ALLOCATED;
static constexpr auto name = C;
T parameters;
// Forward * and -> to the parameters for convenience.
const T& operator*() const { return parameters; }
T& operator*() { return parameters; }
const T* operator->() const { return ¶meters; }
T* operator->() { return ¶meters; }
operator const T&() const { return parameters; }
operator T&() { return parameters; }
bool operator==(const FunctionNotation<C, T>&) const = default;
};
template<CSSValueID C, typename T> bool operator==(const UniqueRef<FunctionNotation<C, T>>& a, const UniqueRef<FunctionNotation<C, T>>& b)
{
return a.get() == b.get();
}
template<size_t, CSSValueID C, typename T> const auto& get(const FunctionNotation<C, T>& function)
{
return function.parameters;
}
template<CSSValueID C, typename T> inline constexpr auto TreatAsTupleLike<FunctionNotation<C, T>> = true;
// Wraps a variable number of elements of a single type, semantically marking them as serializing as "space separated".
template<typename T, size_t inlineCapacity = 0> struct SpaceSeparatedVector {
using Vector = WTF::Vector<T, inlineCapacity>;
using const_iterator = typename Vector::const_iterator;
using const_reverse_iterator = typename Vector::const_reverse_iterator;
using value_type = typename Vector::value_type;
SpaceSeparatedVector() = default;
SpaceSeparatedVector(std::initializer_list<T> initializerList)
: value { initializerList }
{
}
SpaceSeparatedVector(WTF::Vector<T, inlineCapacity>&& value)
: value { WTFMove(value) }
{
}
const_iterator begin() const { return value.begin(); }
const_iterator end() const { return value.end(); }
const_reverse_iterator rbegin() const { return value.rbegin(); }
const_reverse_iterator rend() const { return value.rend(); }
bool isEmpty() const { return value.isEmpty(); }
size_t size() const { return value.size(); }
const T& operator[](size_t i) const { return value[i]; }
template<typename F> decltype(auto) map(F&& functor) const { return value.map(std::forward<F>(functor)); }
bool operator==(const SpaceSeparatedVector<T, inlineCapacity>&) const = default;
WTF::Vector<T, inlineCapacity> value;
};
template<typename T, size_t N> inline constexpr auto TreatAsRangeLike<SpaceSeparatedVector<T, N>> = true;
template<typename T, size_t N> inline constexpr auto SerializationSeparator<SpaceSeparatedVector<T, N>> = " "_s;
// Wraps a variable number of elements of a single type, semantically marking them as serializing as "comma separated".
template<typename T, size_t inlineCapacity = 0> struct CommaSeparatedVector {
using Vector = WTF::Vector<T, inlineCapacity>;
using const_iterator = typename Vector::const_iterator;
using const_reverse_iterator = typename Vector::const_reverse_iterator;
using value_type = typename Vector::value_type;
CommaSeparatedVector() = default;
CommaSeparatedVector(std::initializer_list<T> initializerList)
: value { initializerList }
{
}
CommaSeparatedVector(WTF::Vector<T, inlineCapacity>&& value)
: value { WTFMove(value) }
{
}
const_iterator begin() const { return value.begin(); }
const_iterator end() const { return value.end(); }
const_reverse_iterator rbegin() const { return value.rbegin(); }
const_reverse_iterator rend() const { return value.rend(); }
bool isEmpty() const { return value.isEmpty(); }
size_t size() const { return value.size(); }
const T& operator[](size_t i) const { return value[i]; }
template<typename F> decltype(auto) map(F&& functor) const { return value.map(std::forward<F>(functor)); }
bool operator==(const CommaSeparatedVector<T, inlineCapacity>&) const = default;
WTF::Vector<T, inlineCapacity> value;
};
template<typename T, size_t N> inline constexpr auto TreatAsRangeLike<CommaSeparatedVector<T, N>> = true;
template<typename T, size_t N> inline constexpr auto SerializationSeparator<CommaSeparatedVector<T, N>> = ", "_s;
// Wraps a list and enforces the invariant that it is either created with a non-empty value or `CSS::Keyword::None`.
template<typename T> struct ListOrNone {
using List = T;
explicit ListOrNone(List&& list)
: value { WTFMove(list) }
{
RELEASE_ASSERT(!value.isEmpty());
}
explicit ListOrNone(CSS::Keyword::None)
: value { }
{
}
bool operator==(const ListOrNone&) const = default;
bool isNone() const { return value.isEmpty(); }
bool isList() const { return !value.isEmpty(); }
template<typename... F> decltype(auto) switchOn(F&&... f) const
{
auto visitor = WTF::makeVisitor(std::forward<F>(f)...);
if (isNone())
return visitor(CSS::Keyword::None { });
return visitor(value);
}
private:
// An empty list indicates the value `none`. This invariant is ensured
// with a release assert in the constructor.
List value;
};
template<typename T> inline constexpr auto TreatAsVariantLike<ListOrNone<T>> = true;
// Wraps a fixed size list of elements of a single type, semantically marking them as serializing as "space separated".
template<typename T, size_t N> struct SpaceSeparatedArray {
using Array = std::array<T, N>;
using value_type = T;
template<typename... Ts>
requires (sizeof...(Ts) == N && WTF::all<std::convertible_to<Ts, T>...>)
constexpr SpaceSeparatedArray(Ts... values)
: value { std::forward<Ts>(values)... }
{
}
constexpr SpaceSeparatedArray(std::array<T, N>&& array)
: value { WTFMove(array) }
{
}
constexpr bool operator==(const SpaceSeparatedArray<T, N>&) const = default;
std::array<T, N> value;
};
template<typename T, typename... Ts>
requires (WTF::all<std::convertible_to<Ts, T>...>)
SpaceSeparatedArray(T, Ts...) -> SpaceSeparatedArray<T, 1 + sizeof...(Ts)>;
template<size_t I, typename T, size_t N> decltype(auto) get(const SpaceSeparatedArray<T, N>& array)
{
return std::get<I>(array.value);
}
template<typename T, size_t N> inline constexpr auto TreatAsTupleLike<SpaceSeparatedArray<T, N>> = true;
template<typename T, size_t N> inline constexpr auto SerializationSeparator<SpaceSeparatedArray<T, N>> = " "_s;
// Convenience for representing a two element array.
template<typename T> using SpaceSeparatedPair = SpaceSeparatedArray<T, 2>;
// Wraps a fixed size list of elements of a single type, semantically marking them as serializing as "comma separated".
template<typename T, size_t N> struct CommaSeparatedArray {
using Array = std::array<T, N>;
using value_type = T;
template<typename... Ts>
requires (sizeof...(Ts) == N && WTF::all<std::convertible_to<Ts, T>...>)
constexpr CommaSeparatedArray(Ts... values)
: value { std::forward<Ts>(values)... }
{
}
constexpr CommaSeparatedArray(std::array<T, N>&& array)
: value { WTFMove(array) }
{
}
constexpr bool operator==(const CommaSeparatedArray<T, N>&) const = default;
std::array<T, N> value;
};
template<typename T, typename... Ts>
requires (WTF::all<std::convertible_to<Ts, T>...>)
CommaSeparatedArray(T, Ts...) -> CommaSeparatedArray<T, 1 + sizeof...(Ts)>;
template<size_t I, typename T, size_t N> decltype(auto) get(const CommaSeparatedArray<T, N>& array)
{
return std::get<I>(array.value);
}
template<typename T, size_t N> inline constexpr auto TreatAsTupleLike<CommaSeparatedArray<T, N>> = true;
template<typename T, size_t N> inline constexpr auto SerializationSeparator<CommaSeparatedArray<T, N>> = ", "_s;
// Convenience for representing a two element array.
template<typename T> using CommaSeparatedPair = CommaSeparatedArray<T, 2>;
// Wraps a variadic list of types, semantically marking them as serializing as "space separated".
template<typename... Ts> struct SpaceSeparatedTuple {
using Tuple = std::tuple<Ts...>;
constexpr SpaceSeparatedTuple(Ts&&... values)
: value { std::make_tuple(std::forward<Ts>(values)...) }
{
}
constexpr SpaceSeparatedTuple(const Ts&... values)
: value { std::make_tuple(values...) }
{
}
constexpr SpaceSeparatedTuple(std::tuple<Ts...>&& tuple)
: value { WTFMove(tuple) }
{
}
constexpr bool operator==(const SpaceSeparatedTuple<Ts...>&) const = default;
std::tuple<Ts...> value;
};
template<size_t I, typename... Ts> decltype(auto) get(const SpaceSeparatedTuple<Ts...>& tuple)
{
return std::get<I>(tuple.value);
}
template<typename... Ts> inline constexpr auto TreatAsTupleLike<SpaceSeparatedTuple<Ts...>> = true;
template<typename... Ts> inline constexpr auto SerializationSeparator<SpaceSeparatedTuple<Ts...>> = " "_s;
// Wraps a variadic list of types, semantically marking them as serializing as "comma separated".
template<typename... Ts> struct CommaSeparatedTuple {
using Tuple = std::tuple<Ts...>;
constexpr CommaSeparatedTuple(Ts&&... values)
: value { std::make_tuple(std::forward<Ts>(values)...) }
{
}
constexpr CommaSeparatedTuple(const Ts&... values)
: value { std::make_tuple(values...) }
{
}
constexpr CommaSeparatedTuple(std::tuple<Ts...>&& tuple)
: value { WTFMove(tuple) }
{
}
constexpr bool operator==(const CommaSeparatedTuple<Ts...>&) const = default;
std::tuple<Ts...> value;
};
template<size_t I, typename... Ts> decltype(auto) get(const CommaSeparatedTuple<Ts...>& tuple)
{
return std::get<I>(tuple.value);
}
template<typename... Ts> inline constexpr auto TreatAsTupleLike<CommaSeparatedTuple<Ts...>> = true;
template<typename... Ts> inline constexpr auto SerializationSeparator<CommaSeparatedTuple<Ts...>> = ", "_s;
// Wraps a pair of elements of a single type representing a point, semantically marking them as serializing as "space separated".
template<typename T> struct SpaceSeparatedPoint {
using Array = SpaceSeparatedPair<T>;
using value_type = T;
constexpr SpaceSeparatedPoint(T p1, T p2)
: value { WTFMove(p1), WTFMove(p2) }
{
}
constexpr SpaceSeparatedPoint(SpaceSeparatedPair<T>&& array)
: value { WTFMove(array) }
{
}
constexpr bool operator==(const SpaceSeparatedPoint<T>&) const = default;
const T& x() const { return get<0>(value); }
const T& y() const { return get<1>(value); }
SpaceSeparatedPair<T> value;
};
template<size_t I, typename T> decltype(auto) get(const SpaceSeparatedPoint<T>& point)
{
return get<I>(point.value);
}
template<typename T> inline constexpr auto TreatAsTupleLike<SpaceSeparatedPoint<T>> = true;
template<typename T> inline constexpr auto SerializationSeparator<SpaceSeparatedPoint<T>> = " "_s;
// Wraps a pair of elements of a single type representing a size, semantically marking them as serializing as "space separated".
template<typename T> struct SpaceSeparatedSize {
using Array = SpaceSeparatedPair<T>;
using value_type = T;
constexpr SpaceSeparatedSize(T p1, T p2)
: value { WTFMove(p1), WTFMove(p2) }
{
}
constexpr SpaceSeparatedSize(SpaceSeparatedPair<T>&& array)
: value { WTFMove(array) }
{
}
constexpr bool operator==(const SpaceSeparatedSize<T>&) const = default;
const T& width() const { return get<0>(value); }
const T& height() const { return get<1>(value); }
SpaceSeparatedPair<T> value;
};
template<size_t I, typename T> decltype(auto) get(const SpaceSeparatedSize<T>& size)
{
return get<I>(size.value);
}
template<typename T> inline constexpr auto TreatAsTupleLike<SpaceSeparatedSize<T>> = true;
template<typename T> inline constexpr auto SerializationSeparator<SpaceSeparatedSize<T>> = " "_s;
// Wraps a quad of elements of a single type representing the edges of a rect, semantically marking them as serializing as "space separated".
template<typename T> struct SpaceSeparatedRectEdges {
using value_type = T;
constexpr SpaceSeparatedRectEdges(T repeat)
: value { repeat, repeat, repeat, repeat }
{
}
constexpr SpaceSeparatedRectEdges(T top, T right, T bottom, T left)
: value { WTFMove(top), WTFMove(right), WTFMove(bottom), WTFMove(left) }
{
}
constexpr SpaceSeparatedRectEdges(RectEdges<T>&& rectEdges)
: value { WTFMove(rectEdges) }
{
}
constexpr bool operator==(const SpaceSeparatedRectEdges<T>&) const = default;
const T& top() const { return value.top(); }
const T& right() const { return value.right(); }
const T& bottom() const { return value.bottom(); }
const T& left() const { return value.left(); }
T& top() { return value.top(); }
T& right() { return value.right(); }
T& bottom() { return value.bottom(); }
T& left() { return value.left(); }
RectEdges<T> value;
};
template<size_t I, typename T> const auto& get(const SpaceSeparatedRectEdges<T>& rectEdges)
{
if constexpr (!I)
return rectEdges.top();
else if constexpr (I == 1)
return rectEdges.right();
else if constexpr (I == 2)
return rectEdges.bottom();
else if constexpr (I == 3)
return rectEdges.left();
}
template<typename T> inline constexpr auto TreatAsTupleLike<SpaceSeparatedRectEdges<T>> = true;
template<typename T> inline constexpr auto SerializationSeparator<SpaceSeparatedRectEdges<T>> = " "_s;
// A set of 4 values parsed and interpreted in the same manner as defined for the margin shorthand.
//
// <minimally-serializing-rect-edges> = <type>{1,4}
//
// - if only 1 value, `a`, is provided, set top, bottom, right & left to `a`.
// - if only 2 values, `a` and `b` are provided, set top & bottom to `a`, right & left to `b`.
// - if only 3 values, `a`, `b`, and `c` are provided, set top to `a`, right to `b`, bottom to `c`, & left to `b`.
//
// As the name implies, the benefit of using this over `SpaceSeparatedRectEdges` directly
// is that this will serialize in its minimal form, checking for element equality and only
// serializing what is necessary.
template<typename T> struct MinimallySerializingSpaceSeparatedRectEdges {
using value_type = T;
constexpr MinimallySerializingSpaceSeparatedRectEdges(T value)
: value { value, value, value, value }
{
}
constexpr MinimallySerializingSpaceSeparatedRectEdges(T top, T right, T bottom, T left)
: value { WTFMove(top), WTFMove(right), WTFMove(bottom), WTFMove(left) }
{
}
constexpr MinimallySerializingSpaceSeparatedRectEdges(RectEdges<T>&& rectEdges)
: value { WTFMove(rectEdges) }
{
}
constexpr bool operator==(const MinimallySerializingSpaceSeparatedRectEdges<T>&) const = default;
const T& top() const { return value.top(); }
const T& right() const { return value.right(); }
const T& bottom() const { return value.bottom(); }
const T& left() const { return value.left(); }
T& top() { return value.top(); }
T& right() { return value.right(); }
T& bottom() { return value.bottom(); }
T& left() { return value.left(); }
RectEdges<T> value;
};
template<size_t I, typename T> decltype(auto) get(const MinimallySerializingSpaceSeparatedRectEdges<T>& value)
{
if constexpr (!I)
return value.top();
else if constexpr (I == 1)
return value.right();
else if constexpr (I == 2)
return value.bottom();
else if constexpr (I == 3)
return value.left();
}
template<typename T> inline constexpr auto TreatAsTupleLike<MinimallySerializingSpaceSeparatedRectEdges<T>> = true;
template<typename T> inline constexpr auto SerializationSeparator<MinimallySerializingSpaceSeparatedRectEdges<T>> = " "_s;
} // namespace WebCore
namespace std {
template<WebCore::CSSValueID C, typename T> class tuple_size<WebCore::FunctionNotation<C, T>> : public std::integral_constant<size_t, 1> { };
template<size_t I, WebCore::CSSValueID C, typename T> class tuple_element<I, WebCore::FunctionNotation<C, T>> {
public:
using type = T;
};
template<typename T, size_t N> class tuple_size<WebCore::SpaceSeparatedArray<T, N>> : public std::integral_constant<size_t, N> { };
template<size_t I, typename T, size_t N> class tuple_element<I, WebCore::SpaceSeparatedArray<T, N>> {
public:
using type = T;
};
template<typename T, size_t N> class tuple_size<WebCore::CommaSeparatedArray<T, N>> : public std::integral_constant<size_t, N> { };
template<size_t I, typename T, size_t N> class tuple_element<I, WebCore::CommaSeparatedArray<T, N>> {
public:
using type = T;
};
template<typename... Ts> class tuple_size<WebCore::SpaceSeparatedTuple<Ts...>> : public std::integral_constant<size_t, sizeof...(Ts)> { };
template<size_t I, typename... Ts> class tuple_element<I, WebCore::SpaceSeparatedTuple<Ts...>> {
public:
using type = tuple_element_t<I, tuple<Ts...>>;
};
template<typename... Ts> class tuple_size<WebCore::CommaSeparatedTuple<Ts...>> : public std::integral_constant<size_t, sizeof...(Ts)> { };
template<size_t I, typename... Ts> class tuple_element<I, WebCore::CommaSeparatedTuple<Ts...>> {
public:
using type = tuple_element_t<I, tuple<Ts...>>;
};
template<typename T> class tuple_size<WebCore::SpaceSeparatedPoint<T>> : public std::integral_constant<size_t, 2> { };
template<size_t I, typename T> class tuple_element<I, WebCore::SpaceSeparatedPoint<T>> {
public:
using type = T;
};
template<typename T> class tuple_size<WebCore::SpaceSeparatedSize<T>> : public std::integral_constant<size_t, 2> { };
template<size_t I, typename T> class tuple_element<I, WebCore::SpaceSeparatedSize<T>> {
public:
using type = T;
};
template<typename T> class tuple_size<WebCore::SpaceSeparatedRectEdges<T>> : public std::integral_constant<size_t, 4> { };
template<size_t I, typename T> class tuple_element<I, WebCore::SpaceSeparatedRectEdges<T>> {
public:
using type = T;
};
template<typename T> class tuple_size<WebCore::MinimallySerializingSpaceSeparatedRectEdges<T>> : public std::integral_constant<size_t, 4> { };
template<size_t I, typename T> class tuple_element<I, WebCore::MinimallySerializingSpaceSeparatedRectEdges<T>> {
public:
using type = T;
};
} // namespace std
|