programming-language
Here are 3,305 public repositories matching this topic...
-
Updated
Aug 22, 2020 - Kotlin
-
Updated
Aug 23, 2020 - V
-
Updated
Aug 8, 2020 - TypeScript
-
Updated
Jul 15, 2020
-
Updated
Jul 31, 2020 - Python
-
Updated
Aug 17, 2020 - JavaScript
-
Updated
Aug 23, 2020 - Perl
-
Updated
Aug 20, 2020 - OCaml
-
Updated
Mar 20, 2018 - TypeScript
-
Updated
Oct 4, 2019
-
Updated
Aug 22, 2020 - Dart
-
Updated
May 28, 2020
cli package bug
➜ corral --help=false
ERRR: Error: missing subcommand at: 'corral'
and yet...
Options:
-g, --debug=0 Configure debug output: 0=off, 1=err, 2=warn, 3=info, 4=fine.
-n, --nothing=false Don't actually apply changes.
-h, --help=false
according to the options, that should work.
Options shouldn't have "=false" as the default displayed really.
-
Updated
Aug 21, 2020 - Red
-
Updated
Aug 23, 2020 - JavaScript
-
Updated
Jul 8, 2020 - Python
-
Updated
Aug 22, 2020 - Go
-
Updated
Aug 23, 2020 - Java
-
Updated
Aug 23, 2020 - Haxe
-
Updated
Jul 22, 2020 - C
-
Updated
Aug 23, 2020 - Clojure
-
Updated
May 28, 2020 - JavaScript
Current behavior:
.> view ##Nat
⚠️
The following names were not found in the codebase. Check your spelling.
##Nat
.> names ##Nat
😶
I couldn't find anything by that name.
.> alias.type ##Nat Nat
Done.
.> names ##Nat
Type
Hash: ##Nat
Names: Nat
.> view ##Nat
-- Nat is built-in.
Desired behavior would be something like:
Motivation
In supercollider/supercollider#4572 we discussed the need for better documentation on when collection functions test on equality vs identity. For instance, SequenceableCollection:indexOf tests on identity, but you wouldn't know it f
-
Updated
Jun 25, 2019 - Swift
Really nice project.
Writing in coconut files, you lose all the IDE integrations for Python. For example, I use VSCode and all the intellicode and hints of course doesn't work for cocount.
I am not too familiar but perhaps theres needs to be a separate language server or maybe you could leverage the existing Python integrations. Either way, better IDE integration wo
-
Updated
Jul 30, 2020 - 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."
I just noticed the
Random
stdlib has anUnsafeView
type for filling arrays. With the new layout optimizations, this should no longer be necessary. We should try using the normal SubArray type for this. If it's still too slow/complex, then at least the type can be made safe by holding the underlying array directly instead of aPtr
.