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 template <typename Type_>
39 void SetNext(Type_ *next) {
44 template <typename Type_>
45 Type_ *&CYSetLast(Type_ *&list) {
50 while (next->next_ != NULL)
55 template <typename Type_>
56 Type_ *&CYGetLast(Type_ *&list) {
61 while ((*next)->next_ != NULL)
62 next = &(*next)->next_;
66 template <typename Type_>
71 CYList(Type_ *first = NULL) :
73 last_(CYGetLast(first))
77 operator Type_ *() const {
81 Type_ *operator ->() const {
85 CYList &operator ->*(Type_ *next) {
90 } else for (;; last_ = last_->next_)
91 if (last_->next_ == NULL) {
99 CYList &operator ->*(CYList &next) {
102 else if (next != NULL) {
103 last_->next_ = next.first_;
110 #define CYForEach(value, list) \
111 for (__typeof__(*list) *value(list); value != NULL; value = value->next_)
113 #endif/*CYCRIPT_LIST_HPP*/