Sergey Shishkinserj-aleks.hashnode.dev·Jan 10, 2025NumberЕсть возможность проверить, является ли что-то числом и есть класс для числовых отношений - num? , +Number. Можно отметить ещё такую деталь, что числа и списки чисел не надо “кавычить”, что естественно. Я числа называю автореферентными символами, пос...picolisp
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 6, 2024𝗖# 𝗢𝗽𝗲𝗿𝗮𝘁𝗼𝗿𝘀:Operators are symbols that perform specific operations on operands. They help us manipulate data and perform calculations. C# provides a rich set of operators to manipulate data. 𝗔𝗿𝗶𝘁𝗵𝗺𝗲𝘁𝗶𝗰 𝗢𝗽𝗲𝗿𝗮𝘁𝗼𝗿𝘀: (Addition): Adds two operands...𝗧𝗲𝗿𝗻𝗮𝗿𝘆
Brieuc Kaisinbrieuckaisin.hashnode.dev·Jul 3, 2024Type-level Arithmetic in TypeScript: Part 1 - Type Safe Time IntervalsTypeScript is a statically typed language that allows you to define your own types. This is useful for many reasons, but one of the most powerful features of TypeScript is the ability to manipulate types in a similar way to how we manipulate values, ...11 likes·872 readsTypeScript
Amir Hossein Babaeianchaincloud.hashnode.dev·Dec 11, 2023Unlocking Safer Smart Contract Development with Solidity 0.8 Checked Arithmetic OperationsAs Ethereum continues to be at the forefront of smart contract development, the introduction of Solidity 0.8 has marked a paradigm shift in how developers approach creating secure and efficient contracts on the blockchain. This pivotal update focuses...Solidity
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Sep 18, 2023ASM ArithmeticsPerformance is one of the main reasons people use assembly language programming. Assembly code can offer significant performance benefits over high-level languages due to its closeness to the hardware. This is especially true for arithmetic operation...Assembly FundamentalsAssembly
Gideon Baturegideonbature.hashnode.dev·Jun 2, 2023Shell Arithmetics: A Beginner's GuideIntroduction The shell can be used to perform some basic arithmetic such as addition, subtraction, multiplication, division, modulus operation, exponential etc. It can also be used to perform some more advanced operations like the logical operation, ...20 likes·49 readsshell
Hezziedevhez.hashnode.dev·Feb 9, 2023Arithmetic operators in JavascriptWith mathematics, you can perform arithmetic operations annotated as + for addition, - for subtraction, / for division, and X for multiplication. In programming languages such as javascript, you can perform similar arithmetic operations just like mat...73 readsJavaScript