Changeset e6dceef for doc


Ignore:
Timestamp:
Apr 11, 2017, 1:45:03 PM (7 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
87c5f40
Parents:
5a48d79
Message:

Tweak code examples for consistent capitalization on pair and switch anonymous switch back on pre-review

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/generic_types/generic_types.tex

    r5a48d79 re6dceef  
    11% take off review (for line numbers) and anonymous (for anonymization) on submission
    2 % \documentclass[format=acmlarge, anonymous, review]{acmart}
    3 \documentclass[format=acmlarge,review]{acmart}
     2\documentclass[format=acmlarge,anonymous,review]{acmart}
     3% \documentclass[format=acmlarge,review]{acmart}
    44
    55\usepackage{xspace,calc,comment}
     
    758758It is also possible to use @ttype@ polymorphism to provide arbitrary argument forwarding functions. For example, it is possible to write @new@ as a library function:
    759759\begin{lstlisting}
    760 struct Pair(otype R, otype S);
     760struct pair(otype R, otype S);
    761761forall(otype R, otype S)
    762 void ?{}(Pair(R, S) *, R, S);  // (1)
     762void ?{}(pair(R, S) *, R, S);  // (1)
    763763
    764764forall(dtype T, ttype Params | sized(T) | { void ?{}(T *, Params); })
     
    767767}
    768768
    769 Pair(int, char) * x = new(42, '!');
     769pair(int, char) * x = new(42, '!');
    770770\end{lstlisting}
    771771The @new@ function provides the combination of type-safe @malloc@ with a constructor call, so that it becomes impossible to forget to construct dynamically allocated objects. This function provides the type-safety of @new@ in \CC, without the need to specify the allocated type again, thanks to return-type inference.
    772772
    773 In the call to @new@, @Pair(double, char)@ is selected to match @T@, and @Params@ is expanded to match @[double, char]@. The constructor (1) may be specialized to  satisfy the assertion for a constructor with an interface compatible with @void ?{}(Pair(int, char) *, int, char)@.
    774 
    775 \TODO{Check if we actually can use ttype parameters on generic types (if they set the complete flag, it should work, or nearly so).}
     773In the call to @new@, @pair(double, char)@ is selected to match @T@, and @Params@ is expanded to match @[double, char]@. The constructor (1) may be specialized to  satisfy the assertion for a constructor with an interface compatible with @void ?{}(pair(int, char) *, int, char)@.
    776774
    777775\subsection{Implementation}
Note: See TracChangeset for help on using the changeset viewer.