https://github.com/mozilla/gecko-dev
Raw File
Tip revision: ada020a603076a1c7dd7e89ba02cb2fd210d55e6 authored by Jeff Walden on 30 May 2014, 02:59:41 UTC
Bug 999651, bug 995679, bug 1009952, bug 1011007, bug 991981. r=sfink, r=shu, r=jandem, r=jdm, r=luke, r=bbouvier, r=nmatsakis, r=bz, r=ehsan, r=jgilbert, r=smaug, r=sicking, r=terrence, r=bholley, r=bent, r=efaust, r=jorendorff, a=1.2.x+
Tip revision: ada020a
Array.h
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* A compile-time constant-length array with bounds-checking assertions. */

#ifndef mozilla_Array_h
#define mozilla_Array_h

#include "mozilla/Assertions.h"
#include "mozilla/Attributes.h"

#include <stddef.h>

namespace mozilla {

template<typename T, size_t Length>
class Array
{
    T arr[Length];

  public:
    T& operator[](size_t i) {
      MOZ_ASSERT(i < Length);
      return arr[i];
    }

    const T& operator[](size_t i) const {
      MOZ_ASSERT(i < Length);
      return arr[i];
    }
};

template<typename T>
class Array<T, 0>
{
  public:
    T& operator[](size_t i) {
      MOZ_ASSUME_UNREACHABLE("indexing into zero-length array");
    }

    const T& operator[](size_t i) const {
      MOZ_ASSUME_UNREACHABLE("indexing into zero-length array");
    }
};

}  /* namespace mozilla */

#endif /* mozilla_Array_h */
back to top