I've written a hash-table for an sml assignment. I've made a polymorphic builder for the hashtable but when I use the insert function I created, I get a comparable type (''a instead of 'a) although i'm not making any comparisons that include the type. Does anyone maybe has an idea why? I'm sorry if my code is a bit messy i've highlighted the important parts, the rest are just helper functions.
getting ''a type instead of 'a in sml
121 Views Asked by Shalev rissin At
1
There are 1 best solutions below
Related Questions in POLYMORPHISM
- Inheritance and Polymorphism in C#
- Downcast from a container of Base* to Derived* without explicit conversion
- Visual C++ - Virtual method is not overriden
- symbol(s) not found for architecture x86_64 c++
- laravel reverse polymorph issue
- polymorphic methods that return different class types in Swift?
- Polymorphic Data Translation/Conversion Design Pattern
- Why can't I call protected virtual base class function in the derived class overridden function?
- Best practice to set large amount of properties in C# base class from derived class
- Actual class of object reference
- Static and Dynamic Binding in Java
- Polymorphism - why not overloading instead
- I am having problems understanding inheritance and getting multiple classes to work together?
- Java polymorphism through injection at runtime
- Difference between runtime and compile time polymorphism in c++
Related Questions in SML
- SML - Find same elements in a string
- ML currying and anonymous functions
- Standard ML / NJ: Loading in file of functions
- SML - Unzip tuples in one list
- mlton gives library-related error
- Functors with multiple inputs in Standard ML
- Standard ML: Getting Last in List
- Standard ML: Iterative vs. Recursive
- Wildcards in Standard ML
- SML - Find element in a list and substitute it
- How to keep elements in list through out the program in SML?
- Why to replace `in` with `let` in sml?
- Why can't I compare reals in Standard ML?
- sml map and structure using recursion
- ML-Error in using exceptions
Related Questions in BUILDER
- Builder pattern with a Java 8 Stream
- Firefox Addon Builder Alternative
- Building fluent APIs in Java to build testdata for database
- How to exclude property from Lombok builder?
- When to use builder design pattern
- How to use builder and stub in WPF C#
- JPA Criteria API in with two lists
- How to clone old builder to make a new builder object?
- Cosmos not showing up for me
- Multiple entries with same key immutable map error
- How to subclass a Java builder class?
- Unable to subclass with Builder pattern: Shipment(Builder) is not public in Shipment; cannot be accessed from outside package
- Java ,GUI window builder
- Builder Pattern: What is the purpose of the Director?
- Linux gitian-builder and "dpkg: error processing package sudo"
Related Questions in METALANGUAGE
- Mako: def composition (at render time) not evaluating properly
- Fragment function seems properly written but Metal complains
- Drawing a user-defined tree
- getting ''a type instead of 'a in sml
- Understanding "let" & "in" in ML programming
- Why is ML called Meta-Language?
- Silhouette Outline Shader Modifier via Metal in SceneKit
- Metalanguage to define workflow of HTML application
- Best way to implement a meta language compiling down to PHP
- Bitwise structure definition language generating c++ code
- Understanding terminology used to describe the DOM
- Programmatically convert synchronous code to asynchronous code
- In Computer Science(especially in metalanguages using EBNF) , do the symbols -> and <- have specific meaning?
- Module meta-language in Racket
- @result_list = grep { test($_) } @unfiltered_list in other languages?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

the solution is using a switch case instead of "if" comparisons, that way the compiler can get mixed up and assume a type needs to be comparable although it does not.