1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2015 Jay Freeman (saurik)
5 /* GNU Affero General Public License, Version 3 {{{ */
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #ifndef CYCRIPT_LIST_HPP
23 #define CYCRIPT_LIST_HPP
25 #include "Exception.hpp"
27 template <typename Type_>
41 void SetNext(Type_ *next) {
46 template <typename Type_>
47 Type_ *&CYSetLast(Type_ *&list) {
52 while (next->next_ != NULL)
57 template <typename Type_>
58 Type_ *&CYGetLast(Type_ *&list) {
63 while ((*next)->next_ != NULL)
64 next = &(*next)->next_;
68 template <typename Type_>
79 CYList(Type_ *first) :
81 last_(CYGetLast(first))
85 CYList(Type_ *first, Type_ *last) :
91 operator Type_ *() const {
95 Type_ *operator ->() const {
99 CYList &operator ->*(Type_ *next) {
101 if (first_ == NULL) {
105 _assert(last_->next_ == NULL);
112 CYList &operator ->*(CYList &next) {
115 else if (next != NULL) {
116 last_->next_ = next.first_;
123 #define CYForEach(value, list) \
124 for (__typeof__(*list) *value(list); value != NULL; value = value->next_)
126 #endif/*CYCRIPT_LIST_HPP*/