This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef CYCLIC_ITERATOR_HPP_ | |
#define CYCLIC_ITERATOR_HPP_ | |
#include <iterator> | |
namespace std { | |
template <class ForwardIt> | |
class cyclic_iterator { | |
public: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace SLang.Service | |
{ | |
public class JsonIr | |
{ | |
public const string JSON_NULL_REPRESENTATION = "null"; | |
public static string NL { get; set; } = Environment.NewLine; |