generics Memes

Go Generics

goGenerics | loc-memes, lock-memes, list-memes, rest-memes, generics-memes, search-memes, jar-memes, IT-memes, ide-memes, cs-memes, comment-memes, rust-memes | ProgrammerHumor.io
Content kusho.ai Parallelizing Enjarify in Go and Rust (medium.com) 138 submitted 3 months ago by Uncaffeinated 79 comments share save hide give gold report sorted by: best v you are viewing a single comment's thread. view the rest of the comments - - pftbest 7 points 3 months ago can you please explain this go syntax to me? type ImmutableTreeListElementT struct I thought go doesn't have generics. permalink embed save report give gold reply - (Uncaffeinated (S 12 points 3 months ago It doesn't. That's just a "template" file, which I use search and replace in order to generate the three monomorphized go files. If you look closely, those aren't angle brackets, they're characters from the Canadian Aboriginal Syllabics block, which are allowed in Go identifiers. From Go's perspective, that's just one long identifier. Every day. We stray further from god.

Exit Vim Generic Solution

exitVimGenericSolution | vim-memes, generics-memes, cs-memes | ProgrammerHumor.io
Content

The biggest benefit of being a C++ dev

The biggest benefit of being a C++ dev | c++-memes, generics-memes, cs-memes, rust-memes | ProgrammerHumor.io
Content malahhkai 1d Rust does generics a lot better than C. 5 4-26 J Unknownldentifier 1 3 1d If a C dev is ever stranded in the desert, all he has to do is say to the empty sands, "C is pretty okay." A Rust enthusiast will appear immediately to correct him. 4 52

I am becoming very suspicious about the stability of this code

I am becoming very suspicious about the stability of this code | css-memes, code-memes, android-memes, api-memes, generics-memes, gradle-memes, bot-memes, cs-memes | ProgrammerHumor.io
Content d732f4 Merge "DO NOT MERGE Track generics in support API definition." by Michael Wright 20 hours ago master c260bc9 DO NOT MERGE Track generics in support API definition. by Michael Wright 21 hours ago 885a9b Merge "DO NOT MERGE ANY HERE. Move to a stable Android gradle plugin." by Aurimas Liutikas 4 days ago 8f766db DO NOT MERGE ANYWHERE. Move to a stable Android gradle plugin. by Aurimas Liutikas 5 days ago 3619a79 Merge "Annotate several method parameters in AlertDialog.Builder as Nullable" by Chris Banes 2 weeks ago c052945 Annotate several method parameters in AlertDialog.Builder as Nullable by Scott Kennedy 3 weeks ago 432 f331 Merge "Import translations. DO NOT MERGE" into stage-aosp-master by TreeHugger Robot 3 months ago af3c550 Merge "Import translations. DO NOT MERGE" into stage-aosp-master by TreeHugger Robot 3 months ago bdd42af Import translations. DO NOT MERGE by Bill Yi 3 months ago 3afba0d Import translations. DO NOT MERGE by Bill Yi 3 months ago 984db62 Import translations. DO NOT MERGE by Bill Yi 3 months ago

When language doesn't have generics, but that doesn't stop you.

When language doesn't have generics, but that doesn't stop you. | loc-memes, lock-memes, list-memes, generics-memes, search-memes, jar-memes, IT-memes, ide-memes, language-memes, cs-memes, comment-memes, rust-memes | ProgrammerHumor.io
Content A 138 Parallelizing Enjarify in Go and Rust (medium.com) submitted 3 months ago by Uncaffelnated 79 comments share save hide give gold report sorted by: best v you are viewing a single comment's thread. view the rest of the comments - pftbest 7 points 3 months ago can you please explain this go syntax to me? type ImmutableTreeListElement struct ( I thought go doesn't have generics. permalink embed save report give gold reply - (Uncaffeinated) S 12 points 3 months ago V It doesn't. That's just a "template" file, which I use search and replace in order to generate the three monomorphized go files. If you look closely, those aren't angle brackets, they're characters from the Canadian Aboriginal Syllabics block, which are allowed in Go identifiers. From Go's perspective, that's just one long identifier.

I guess all programmers share the same opinion about managers' work - an example from Pluralsight course on C# Generics by Scott Allen

I guess all programmers share the same opinion about managers' work - an example from Pluralsight course on C# Generics by Scott Allen | programmer-memes, programmers-memes, program-memes, threading-memes, string-memes, class-memes, generics-memes, c#-memes, query-memes, ide-memes, console-memes | ProgrammerHumor.io
Content Model.cs X Program.cs Querylt.Employee using System.Text; using System. Threading. Tasks; namespace QueryIt public class Person public string Name get; set; DoWorkO public class Employee : Person public int Id get; set; public virtual void DoWork() Console.WriteLine("Doing real work"); E public class Manager : Employee public override void DoWork() Console.WriteLine("Create a meeting");