Difference between revisions of "User talk:Ctsolakis"
From crtc.cs.odu.edu
(→Extension SyntaxHighlight test) |
|||
Line 27: | Line 27: | ||
#define WRAPPER(FUNC) wrapper<decltype(&FUNC), &FUNC> | #define WRAPPER(FUNC) wrapper<decltype(&FUNC), &FUNC> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | |||
+ | == cite extension test == | ||
+ | |||
+ | The Sun is pretty big.<ref>E. Miller, ''The Sun'', (New York: Academic Press, 2005), 23-5.</ref> The Moon, however, is not so big.<ref>''R. Smith, "Size of the Moon", ''Scientific American'', 46 (April 1978): 44-6.</ref> | ||
+ | |||
+ | ===Notes=== | ||
+ | <references /> |
Revision as of 04:57, 30 March 2018
test text
test section
test text
Extension SyntaxHighlight test
https://www.mediawiki.org/wiki/Extension:SyntaxHighlight
def quickSort(arr):
less = []
pivotList = []
more = []
if len(arr) <= 1:
return arr
else:
pass
template<typename Fn, Fn fn, typename... Args>
typename std::result_of<Fn(Args...)>::type
wrapper(Args&&... args) {
return fn(std::forward<Args>(args)...);
}
#define WRAPPER(FUNC) wrapper<decltype(&FUNC), &FUNC>
cite extension test
The Sun is pretty big.[1] The Moon, however, is not so big.[2]