Skip to content

Commit

Permalink
Deploying to gh-pages from @ 6821b83 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
Vortex2Oblivion committed Nov 26, 2024
1 parent 0329507 commit 392ef73
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
10 changes: 10 additions & 0 deletions cpp/StdVector.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en"><!-- use theme color or fallback -->
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../extra-styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><link href="../dark-mode.css" rel="stylesheet"/><script>var dox = {rootPath: "../",platforms: ["doc"]};</script><script src="../nav.js"></script><script src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"/><title>cpp.StdVector - Leather Engine Documentation</title></head><body><script>/* Here to prevent flash of unstyled content */let systemDarkMode = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;if ((!localStorage.theme && systemDarkMode) || localStorage.theme == "dark") {document.body.style.backgroundColor = "#111";document.body.style.opacity = "0";document.addEventListener("DOMContentLoaded", function(event) {toggleTheme();document.body.style.backgroundColor = "";document.body.style.opacity = "";});}</script><style>
.navbar .brand {
display: inline-block;
float: none;
text-shadow: 0 0 0 transparent;
}
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" style="color:#000000" href="../">Leather Engine Documentation</a><a href="#" id="theme-toggle" class="brand" style="color:#000000" onclick="toggleTheme()" title="Toggle Dark Mode"><i class="fa fa-moon-o"></i></a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="fa fa-search"></i></span><input id="search" type="text" placeholder="Filter (Ctrl+P)" autocomplete="off"/></div></form></div><div class="well sidebar-nav" id="explorer"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> StdVector&lt;<span class="type">T</span>&gt;</h1><h4><small>package <a href="../cpp/index.html">cpp</a></small></h4> <span class="label label-meta label-meta-directlyUsed" title="Marks types that are directly referenced by non-extern code.">@:directlyUsed</span><span class="label label-meta label-meta-include" title="">@:include(&quot;vector&quot;)</span><span class="label label-meta label-meta-native" title="Rewrites the path of a type or class field during generation.">@:native(&quot;std::vector&quot;)</span><span class="label label-meta label-meta-nativeArrayAccess" title="">@:nativeArrayAccess</span><span class="label label-meta label-meta-unreflective" title="">@:unreflective</span><span class="label label-meta label-meta-structAccess" title="Marks an extern class as using struct access (`.`) not pointer (`-&gt;`).">@:structAccess</span></div><div class="body"><div class="doc doc-main"><p></p></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3 class="anchor"><code><a href="#new"><span class="identifier">new</span></a>()</code></h3><h3 class="anchor"><code><a href="#new"><span class="identifier">new</span></a>(<span style="white-space:nowrap">size:<a class="type" title="Int - The standard Int type." href="../Int.html">Int</a></span>)</code></h3><div class="doc"><p></p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="at"></a><h3 class="anchor"><code><a href="#at"><span class="identifier">at</span></a>(<span style="white-space:nowrap">index:<a class="type" title="Int - The standard Int type." href="../Int.html">Int</a></span>):<span class="type">T</span></code></h3><div class="doc"><p></p></div></div><div class="field "><a name="back"></a><h3 class="anchor"><code><a href="#back"><span class="identifier">back</span></a>():<span class="type">T</span></code></h3><div class="doc"><p></p></div></div><div class="field "><a name="capacity"></a><h3 class="anchor"><code><a href="#capacity"><span class="identifier">capacity</span></a>():<a class="type" title="Int - The standard Int type." href="../Int.html">Int</a></code></h3><div class="doc"><p></p></div></div><div class="field "><a name="clear"></a><h3 class="anchor"><code><a href="#clear"><span class="identifier">clear</span></a>():<a class="type" title="Void - The standard Void type." href="../Void.html">Void</a></code></h3><div class="doc"><p></p></div></div><div class="field "><a name="data"></a><h3 class="anchor"><code><a href="#data"><span class="identifier">data</span></a>():<a class="type" title="cpp.RawPointer" href="../cpp/RawPointer.html">RawPointer</a>&lt;<span class="type">T</span>&gt;</code></h3><div class="doc"><p></p></div></div><div class="field "><a name="empty"></a><h3 class="anchor"><code><a href="#empty"><span class="identifier">empty</span></a>():<a class="type" title="Bool - The standard Boolean type, which can either be true or false." href="../Bool.html">Bool</a></code></h3><div class="doc"><p></p></div></div><div class="field "><a name="front"></a><h3 class="anchor"><code><a href="#front"><span class="identifier">front</span></a>():<span class="type">T</span></code></h3><div class="doc"><p></p></div></div><div class="field "><a name="pop_back"></a><h3 class="anchor"><code><a href="#pop_back"><span class="identifier">pop_back</span></a>():<a class="type" title="Void - The standard Void type." href="../Void.html">Void</a></code></h3><div class="doc"><p></p></div></div><div class="field "><a name="push_back"></a><h3 class="anchor"><code><a href="#push_back"><span class="identifier">push_back</span></a>(<span style="white-space:nowrap">value:<span class="type">T</span></span>):<a class="type" title="Void - The standard Void type." href="../Void.html">Void</a></code></h3><div class="doc"><p></p></div></div><div class="field "><a name="reserve"></a><h3 class="anchor"><code><a href="#reserve"><span class="identifier">reserve</span></a>(<span style="white-space:nowrap">newCapacity:<a class="type" title="Int - The standard Int type." href="../Int.html">Int</a></span>):<a class="type" title="Void - The standard Void type." href="../Void.html">Void</a></code></h3><div class="doc"><p></p></div></div><div class="field "><a name="resize"></a><h3 class="anchor"><code><a href="#resize"><span class="identifier">resize</span></a>(<span style="white-space:nowrap">newSize:<a class="type" title="Int - The standard Int type." href="../Int.html">Int</a></span>):<a class="type" title="Void - The standard Void type." href="../Void.html">Void</a></code></h3><div class="doc"><p></p></div></div><div class="field "><a name="size"></a><h3 class="anchor"><code><a href="#size"><span class="identifier">size</span></a>():<a class="type" title="Int - The standard Int type." href="../Int.html">Int</a></code></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#000000">&copy; 2024 &nbsp;</p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
10 changes: 0 additions & 10 deletions cpp/VectorConstCharStar.html

This file was deleted.

Loading

0 comments on commit 392ef73

Please sign in to comment.