How to check if sticker is animated ?
#pragma once #include "Function.h" template <class Type> class Argument { public: Argument(); Argument(Type number); Argument(Function<Type>* function); Type getNumbe...
When does MessageEmptyError throws ? because if i send message with empty text i'm getting ValueError
#include <iostream> #include <string> using namespace std; class A { public: A() { f(); } virtual void f() = 0; }; class B : public A { public:...
nlohmann::json TelegramAPI::RawSend(std::string Command, std::unordered_map<std::string, std::variant<std::string, long long, bool>> Arg) { Command += "?"; for (auto Iter ...
#pragma once template <class Type> class Argument { public: Argument(Type number); Argument(Type(*function)(Type)); Type Get(Type varible); private: Type number_; T...
how to properly ping admins ?
void RawSend(std::string Command, std::unordered_map<std::string, std::variant<std::string, long long, bool>> Arg) { Command += "?"; for (auto Iter : Arg) { std::strin...
Что здесь не так ?
Это безопасно ?
how to check if i can send message to some user ?
#include<string> #include<iostream> int main() { std::string s = "text or number to test"; bool p = 1; for(int i = 0; i < s.size() / 2 && p; i++) if(s[i] != s[s.size() ...
Snake& snake; if(h * w & 1) { OddSnake odd(h, w, { x, y }); snake = dynamic_cast<Snake&> (odd); } else { EvenSnake even(h, w, { x, y }); snake = dynamic_cast<Snake&> (...
Если у меня много потоков с одной функцией по типу sin, cos, +, -, pow, и т.д мне лучше использовать CPU или GPU ?
if(h * w & 1) { snake = unique_ptr<OddSnake> (new OddSnake(h, w, { x, y })); } else { snake = unique_ptr<EvenSnake> (new EvenSnake(h, w, { x, y })); } так подойдёт ?
Visual Studio 2019 CL.exe завершилась с кодом 2. Как это исправить ?
как с НЕ статичной функции вызвать другую НЕ статичную функцию класа ?
Что означает R"string" или "string"s или L" string" ?
В c++ удаляются локальные переменные функций ?
2**100 считает ?