Md Nahidur RahmanDunder Methods in Python for Type ConversionsDunder methods are special kind of methods that begins and ends with double underscores. The name “dunder” is used unofficially in the…Nov 12
Rina MondalType Casting in PythonType casting, also known as type conversion, is the process of converting one data type into another. Ex: you want to change the data type…Jan 91
ankita kotadia - Senior iOS EngineerUnderstanding Any in SwiftIn Swift, Any is a type that can represent an instance of any data type, whether it's a class, struct, enum, or even a function. This means…Oct 18Oct 18
Rashmi SandaminiInheritance in OOPIn our previous article, we explored the basics of Object Oriented Programming (OOP). We looked at how today’s modern software is built and…Nov 1, 2023Nov 1, 2023
BalakrishnaMastering Variables, Data Types, and Type Casting in PythonHello Friend! Today, we’ll dig into the core building blocks of Python: variables, data types, and type casting. These concepts might…Oct 1Oct 1
Md Nahidur RahmanDunder Methods in Python for Type ConversionsDunder methods are special kind of methods that begins and ends with double underscores. The name “dunder” is used unofficially in the…Nov 12
Rina MondalType Casting in PythonType casting, also known as type conversion, is the process of converting one data type into another. Ex: you want to change the data type…Jan 91
ankita kotadia - Senior iOS EngineerUnderstanding Any in SwiftIn Swift, Any is a type that can represent an instance of any data type, whether it's a class, struct, enum, or even a function. This means…Oct 18
Rashmi SandaminiInheritance in OOPIn our previous article, we explored the basics of Object Oriented Programming (OOP). We looked at how today’s modern software is built and…Nov 1, 2023
BalakrishnaMastering Variables, Data Types, and Type Casting in PythonHello Friend! Today, we’ll dig into the core building blocks of Python: variables, data types, and type casting. These concepts might…Oct 1
InJavaScript in Plain EnglishbyAnton BeluzhenkoWhy `as unknown as Type` should be bannedThere is a common pattern in TypeScript codebases to use as unknown as Type for typecasting. I believe that this pattern should be banned…Apr 16
Raj R. SharmaDown casting and Up casting in JavaIn Java we can convert a variable of one datatype to another, this is called as type casting.Sep 29
Oguzhan OztaskinUnlocking Hidden Potential: Exploring the Power of Shared Pointer Aliasing Constructors in C++Shared pointers are very important tools to manage memory. However, I don’t think many of us aware of some very useful features of them…Jan 22