Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/working/resolver_design.md

    rd14d96a r59f9273  
    14141414considered if no match was found in the previous class.
    14151415
     1416Another source of efficiency would be to cache the best given interpretation
     1417of a subexpression within an environment; this may not be incredibly useful
     1418for explict parameters (though it may be useful for, e.g. `f( x, x )`, where
     1419both parameters of `f` have the same type), but should pay some dividends for
     1420the implicit assertion parameters, especially the otype parameters for the
     1421argument of a generic type, which will generally be resolved in duplicate for
     1422(at least) the assignment operator, constructor, copy constructor & destructor
     1423of the generic type.
     1424
    14161425## Appendix A: Partial and Total Orders ##
    14171426The `<=` relation on integers is a commonly known _total order_, and
Note: See TracChangeset for help on using the changeset viewer.