Sha256: e4dd6ce13eeb076a667ea313d4c924bcb4232c92e4177c6f082e1d145ba39010

Contents?: true

Size: 1.54 KB

Versions: 17

Compression:

Stored size: 1.54 KB

Contents

#ifndef SASS_PATHS_H
#define SASS_PATHS_H

#include <string>
#include <vector>
#include <sstream>
#include <iostream>

using namespace std;

template<typename T>
string vector_to_string(vector<T> v)
{
  stringstream buffer;
  buffer << "[";

  if (!v.empty())
  {  buffer << v[0]; }
  else
  { buffer << "]"; }

  if (v.size() == 1)
  { buffer << "]"; }
  else
  {
    for (size_t i = 1, S = v.size(); i < S; ++i) buffer << ", " << v[i];
    buffer << "]";
  }

  return buffer.str();
}

namespace Sass {

  using namespace std;

  template<typename T>
  vector<vector<T> > paths(vector<vector<T> > strata, size_t from_end = 0)
  {
    if (strata.empty()) {
      return vector<vector<T> >();
    }

    size_t end = strata.size() - from_end;
    if (end <= 1) {
      vector<vector<T> > starting_points;
      starting_points.reserve(strata[0].size());
      for (size_t i = 0, S = strata[0].size(); i < S; ++i) {
        vector<T> starting_point;
        starting_point.push_back(strata[0][i]);
        starting_points.push_back(starting_point);
      }
      return starting_points;
    }

    vector<vector<T> > up_to_here = paths(strata, from_end + 1);
    vector<T>          here       = strata[end-1];

    vector<vector<T> > branches;
    branches.reserve(up_to_here.size() * here.size());
    for (size_t i = 0, S1 = up_to_here.size(); i < S1; ++i) {
      for (size_t j = 0, S2 = here.size(); j < S2; ++j) {
        vector<T> branch = up_to_here[i];
        branch.push_back(here[j]);
        branches.push_back(branch);
      }
    }

    return branches;
  }

}

#endif

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
gulp_assets-1.0.0.pre.5 template/node_modules/gulp-sass/node_modules/node-sass/src/libsass/paths.hpp
gulp_assets-1.0.0.pre.4 template/node_modules/gulp-sass/node_modules/node-sass/src/libsass/paths.hpp
gulp_assets-1.0.0.pre.3 template/node_modules/gulp-sass/node_modules/node-sass/src/libsass/paths.hpp
sassc-1.7.1 ext/libsass/paths.hpp
sassc-1.7.0 ext/libsass/paths.hpp
sassc-1.6.0 ext/libsass/paths.hpp
sassc-1.5.1 ext/libsass/paths.hpp
sassc-1.5.0 ext/libsass/paths.hpp
sassc-1.4.0 ext/libsass/paths.hpp
sassc-1.3.0 ext/libsass/paths.hpp
sassc-1.2.0 ext/libsass/paths.hpp
sassc-1.1.2 ext/libsass/paths.hpp
sassc-1.1.1 ext/libsass/paths.hpp
sassc-1.1.0 ext/libsass/paths.hpp
sassc-1.0.0 ext/libsass/paths.hpp
sassc-0.0.11 ext/libsass/paths.hpp
sassc-0.0.10 ext/libsass/paths.hpp