programming-language
Here are 5,201 public repositories matching this topic...
-
Updated
Mar 9, 2022 - Kotlin
-
Updated
Mar 7, 2022
-
Updated
Mar 9, 2022 - JavaScript
-
Updated
Mar 9, 2022 - V
-
Updated
Mar 8, 2022 - TypeScript
-
Updated
Jan 24, 2022 - Python
Because header inclusion can be very deeply nested, "using namespace" directive located in header files can unexpectedly change the meaning of the code. It can also lead to the name collision. For instance, it is not possible to define isDigit function in CommonSyntaxTest.cpp.
TODO:
- Remove [using namespace util;](https://github.com/ethereum/solidity/blob/develop/libsolidity/ast/ASTAnnotatio
-
Updated
Mar 8, 2022 - Perl
-
Updated
Feb 6, 2022 - Python
-
Updated
Mar 9, 2022 - OCaml
-
Updated
Mar 9, 2022 - Dart
-
Updated
Mar 2, 2022
-
Updated
Mar 20, 2018 - TypeScript
-
Updated
Mar 3, 2022
-
Updated
Mar 2, 2022 - JavaScript
-
Updated
Mar 9, 2022 - TypeScript
ponyc/packages/encode/base64/base64.pony includes the following code:
fun decode[A: Seq[U8] iso = Array[U8] iso](
data: ReadSeq[U8],
at62: U8 = '+',
at63: U8 = '/',
pad: U8 = '=')
: A^ ?
=>
"""
Configurable decoding. The defaults are for RFC 4648. Missing padding is
not an error. Non-base64 data, other than whitespace (which can appear at-
Updated
Feb 23, 2022 - Go
-
Updated
Mar 9, 2022 - Red
-
Updated
Mar 8, 2022 - Haxe
-
Updated
Mar 8, 2022 - Go
-
Updated
Mar 8, 2022 - Java
-
Updated
Sep 3, 2021
When the user defines an invalid top-level term, the error message should give correct info about what is permissible.
Of course, if we want to bring back the namespace functionality, disregard!
Motivation
The .postf is a neat shortcut for posting a formatted string.
But personally I see my self doing things like "% is not implemented yet".format("something").warn and the equivalent with .error all the time.
Description of Proposed Feature
Add the following methods to String:
// Equivalent to .postf
St
-
Updated
Sep 18, 2021 - C
-
Updated
Mar 1, 2022 - JavaScript
Improve this page
Add a description, image, and links to the programming-language topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the programming-language topic, visit your repo's landing page and select "manage topics."
Currently, we mostly map julia function arguments directly to LLVM arguments regardless of how many there are. That probably causes us to hit some pathological cases, since LLVM is not likely to care about or optimize handling 1000 arguments, since most front-ends do not generate that.
For example: