[FEAT] Add missing Go 1.21+ standard library lessons (slices, maps, cmp, context.AfterFunc)#513
Draft
rasel9t6 wants to merge 1 commit into
Draft
[FEAT] Add missing Go 1.21+ standard library lessons (slices, maps, cmp, context.AfterFunc)#513rasel9t6 wants to merge 1 commit into
rasel9t6 wants to merge 1 commit into
Conversation
…ontext.AfterFunc, cmp Adds 4 missing standard library topics identified in the extended audit: - DS.7 (slices): Covers slices.Sort, Compact, BinarySearch, Contains, Index, Delete, Insert, Clone, Equal. Teaches the modern Go way to work with slices. - DS.8 (maps): Covers maps.Clone, Copy, Keys, Values, DeleteFunc, Equal. Teaches generic map operations. - CT.6 (context.AfterFunc): Covers scheduling callbacks on context cancellation, immediate-fire for cancelled contexts, and stop() for cancellation. - TI.9 (generics integration): Added cmp.Compare and cmp.Less examples to the existing generics lesson. Updated WHAT-YOU-LL-LEARN to mention cmp.Ordered. Curriculum: 215 -> 219 items. README.md count updated. All cross-references (NEXT UP, README Next Step) updated. All READMEs follow 11-section contract with Mermaid diagrams and [!NOTE]/[!TIP] alerts. Closes #512
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #512
Scope
Type
Summary
Adds 4 missing Go 1.21+ standard library topics identified in the extended audit:
slicesmapscontextcmpValidation