403Webshell
Server IP : 217.160.0.212  /  Your IP : 216.73.216.141
Web Server : Apache
System : Linux www 6.18.51-i1-ampere #1196 SMP Fri Sep 11 20:43:55 CEST 2026 aarch64
User : sws1073854427 ( 1073854427)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /lib/python3/dist-packages/pythran/pythonic/itertools/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /lib/python3/dist-packages/pythran/pythonic/itertools/repeat.hpp
#ifndef PYTHONIC_ITERTOOLS_REPEAT_HPP
#define PYTHONIC_ITERTOOLS_REPEAT_HPP

#include "pythonic/include/itertools/repeat.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/list.hpp"

PYTHONIC_NS_BEGIN

namespace itertools
{

  template <class T, bool Endless>
  repeat_iterator<T, Endless>::repeat_iterator(T value, long count)
      : value_(value), count_(count)
  {
  }

  template <class T, bool Endless>
  repeat_iterator<T, Endless> &repeat_iterator<T, Endless>::operator++()
  {
    ++count_;
    return *this;
  }

  template <class T, bool Endless>
  T repeat_iterator<T, Endless>::operator*()
  {
    return value_;
  }

  template <class T, bool Endless>
  bool repeat_iterator<T, Endless>::
  operator!=(repeat_iterator<T, Endless> const &other) const
  {
    return Endless || count_ != other.count_;
  }
  template <class T, bool Endless>
  bool repeat_iterator<T, Endless>::
  operator==(repeat_iterator<T, Endless> const &other) const
  {
    return !Endless && count_ == other.count_;
  }
  template <class T, bool Endless>
  bool repeat_iterator<T, Endless>::
  operator<(repeat_iterator<T, Endless> const &other) const
  {
    return !Endless && count_ < other.count_;
  }

  template <class T, bool Endless>
  _repeat<T, Endless>::_repeat(T value, long count)
      : repeat_iterator<T, Endless>(value, count)
  {
  }

  template <class T, bool Endless>
  typename _repeat<T, Endless>::iterator _repeat<T, Endless>::begin() const
  {
    return {_repeat<T, Endless>::iterator::value_, 0};
  }
  template <class T, bool Endless>
  typename _repeat<T, Endless>::iterator _repeat<T, Endless>::end() const
  {
    return *this;
  }

  template <typename T>
  _repeat<T, false> repeat(T value, long count)
  {
    return {value, count};
  }

  template <typename T>
  _repeat<T, true> repeat(T value)
  {
    return {value, -1};
  }
}
PYTHONIC_NS_END

#endif

Youez - 2016 - github.com/yon3zu
LinuXploit