Skip to content
#

stack

Here are 2,669 public repositories matching this topic...

GoDS (Go Data Structures). Containers (Sets, Lists, Stacks, Maps, Trees), Sets (HashSet, TreeSet, LinkedHashSet), Lists (ArrayList, SinglyLinkedList, DoublyLinkedList), Stacks (LinkedListStack, ArrayStack), Maps (HashMap, TreeMap, HashBidiMap, TreeBidiMap, LinkedHashMap), Trees (RedBlackTree, AVLTree, BTree, BinaryHeap), Comparators, Iterators, Enumerables, Sort, JSON

  • Updated Apr 26, 2021
  • Go

📚 collection of JavaScript and TypeScript data structures and algorithms for education purposes. Source code bundle of JavaScript algorithms and data structures book

  • Updated Aug 10, 2021
  • TypeScript
isovector
isovector commented Jun 22, 2021

Given this:

data Metaprogram = Metaprogram
  { mp_name             :: !Text
  , mp_known_by_auto    :: !Bool
  , mp_show_code_action :: !Bool
  , mp_program          :: !(TacticsM ())
  }
  deriving stock Generic
{-# ANN Metaprogram "hello" #-}

instance NFData Metaprogram where
  rnf (!(Metaprogram !_ !_ !_ !_)) = ()

without -XBangPatterns enabled, I get a code

Improve this page

Add a description, image, and links to the stack topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the stack topic, visit your repo's landing page and select "manage topics."

Learn more