.idea
docs/vendor
docs/src
-docs/composer.*
+docs/*composer*
*.tgz
+++ /dev/null
-FROM php:8.1-cli
-
-RUN apt-get update -qy \
- && DEBIAN_FRONTEND=noninteractive \
- apt-get install -qy \
- build-essential \
- git \
- libcurl4-openssl-dev \
- libicu-dev \
- libssl-dev \
- zlib1g-dev \
- && rm -rf /var/lib/apt/lists/*
-
-WORKDIR /tmp
-
-RUN \
- curl -sSLO https://getcomposer.org/download/2.2.5/composer.phar &&\
- curl -sSLO https://replicator.pharext.org/phars/raphf/raphf-2.0.1.ext.phar &&\
- curl -sSLO https://replicator.pharext.org/phars/pecl_http/pecl_http-4.2.1.ext.phar
-RUN \
- touch /usr/local/etc/php/conf.d/pecl.ini &&\
- php raphf-*.ext.phar -vi /usr/local/etc/php/conf.d/pecl.ini &&\
- php pecl_http-*.ext.phar -vi /usr/local/etc/php/conf.d/pecl.ini
-
-WORKDIR /app
-ENTRYPOINT ["php", "/tmp/composer.phar"]
-
-PHP ?= php
-COMPOSER ?= composer
+DOCKER ?=
+PHP ?= $(DOCKER) php
+COMPOSER ?= $(DOCKER) composer
TAG := $(shell (git describe --tags --match=v[0-9]* 2>/dev/null || git tag --sort=authordate | egrep ^v[0-9] | tail -n1) | cut -d. -f-2)
# ---
-SPECIAL_SRC := src/ion/\\\:\\\ Security.md src/ion/\\\:\\\ Contributing.md src/ion.md
+SPECIAL_SRC := src/ion/\\\:\\\ Security.md src/ion/\\\:\\\ Contributing.md src/ion.md src/mdref.json
.PHONY: all
all: latest
$(TAG): markdown | vendor/bin/ref2html
mkdir -p $@
- ln -s . ext-ion
+ -ln -s . ext-ion
$(PHP) $| ext-ion/$@ src
unlink ext-ion
touch $@
src src/ion:
-mkdir -p $@
+src/mdref.json: mdref.json
+ -test -e $@ || ln $^ $@
src/ion.stub.php: ../ion.stub.php | src
-test -e $@ || ln $^ $@
src/ion.md: ../README.md | src
vendor/%:
COMPOSER= $(COMPOSER) require m6w6/mdref:dev-master
+.PHONY: docker
+docker:
+ docker-compose -f docker/compose.yml build php
+ docker-compose -f docker/compose.yml build composer
+ $(MAKE) DOCKER="docker-compose -f docker/compose.yml run --rm"
+
.PHONY: clean
clean:
- -rm -rf latest src vendor composer.*
+ -rm -rf latest src vendor composer* .composer
-# Read the docs
-Run caddy to read the docs as the would appear on https://awesomized.github.io/ext-ion.
+# ext-ion docs
+https://awesomized.github.io/ext-ion
-```sh
-caddy run
+## Howto update docs
+
+1. Edit stub: `$EDITOR ../ion.stub.php`
+2. [Rebuild](#Build)
+3. [Review](#Review); repeat from 2. if necessary
+4. [Deploy](#Deployment)
+
+## Howto make a release
+
+### 1. Create tag
```
-Use `$CADDY_ADDRESS` envvar to customize the HTTP endpoint, e.g:
+git tag vX.Y.Z
+```
+
+### 2. Rebuild docs
+See [Rebuild](#Rebuild).
+
+### 3. Review docs
+See [Review](#Review).
+
+### 4. Commit docs with release changelog:
+```
+git add .
+git commit
```
-CADDY_ADDRESS=localhost:1234 caddy run
```
+release vX.Y.Z
-# Build the docs
+* Additions ...
+* Changes ...
+```
+### 5. Move tag:
+```
+git tag -f vX.Y.Z
+```
+### 6. Release & [deploy](#Deployment):
+```
+git push
+```
-## Without docker:
-### Prerequsites:
+## Build
+### Prerequisites without docker:
* composer v2
-* PHP with ext-http and ext-dom
-* GNU make
+* PHP with ext-http and ext-dom but **without** ext-ion
-```sh
-make
+```
+ ┌─────────┐
+ │ BUILD │ ┌──────────┐
+ ┌─┴─────────┴──────────────┐ │ SOURCE │
+ │ $ make #docker UID=$UID ├──►┌──┴──────────┴───────────┐
+ └──────────────────────────┘ │ ../README.md │
+ │ ../ion.stub.php │
+ ┌──────────────────────────────┤ ../... │
+ │ └─────────────────────────┘
+ │ ┌────────────────┐
+ │ │ PROCESSED BY │ ┌────────────┐
+┌▼─┴────────────────┴───────┐ │ MARKDOWN │
+│ ./vendor/bin/stub2ref ├──►┌──┴────────────┴─────────┐
+└───────────────────────────┘ │ ./src/mdref.json │
+ │ ./src/ion.md │
+ ┌──────────────────────────────┤ ./src/ion/... │
+ │ └─────────────────────────┘
+ │ ┌────────────────┐
+ │ │ PROCESSED BY │ ┌────────┐
+┌▼─┴────────────────┴───────┐ │ HTML │
+│ ./vendor/bin/ref2html ├──►┌──┴────────┴─────────────┐
+└───────────────────────────┘ │ ./docs/latest -> vX.Y/ │
+ │ ./docs/vX.Y/index.html │
+ │ ./docs/vX.Y/ion/... │
+ └─────────────────────────┘
```
-## With docker:
-### Prerequisites:
-* docker-compose
-* your UID in docker-composer.yml
-* GNU make
+## Review
+### Caddy
+Run caddy to read the docs as they would appear on https://awesomized.github.io/ext-ion.
+```shell
+caddy run
+```
-```sh
-make COMPOSER="docker-compose run --rm composer" \
- PHP="docker-compose run --rm --entrypoint php composer"
+Use `$CADDY_ADDRESS` env var to customize the HTTP endpoint, e.g:
+```shell
+CADDY_ADDRESS=localhost:8080 caddy run
```
-# Release procedure
+Use docker, if you do not have caddy installed:
+```shell
+docker-compose -f docker/compose.yml run -p 8080:80 caddy
+```
+### PHP
+Use PHP CLI server if you're desperate:
+```shell
+php -S localhost:0 -r . .router.php
+```
-1. create tag
-2. rebuild docs
-3. review docs
-4. commit
-5. move tag
-6. push
+## Deployment
+```
+ ┌──────────┐
+ │ DEPLOY │
+┌──┴──────────┴─────────────┐
+│ $ git add . │ ┌────────────┐
+│ $ git commit │ │ GH ACTION │
+│ $ git push ├──►┌──┴────────────┴─────────┐
+└───────────────────────────┘ │ pages-build-deployment │
+ └─┬───────────────────────┘
+ ┌──────────────┐ │
+ │ DEPLOYMENT │ │
+┌──┴──────────────┴───────────────▼───────────────────────┐
+│ │
+│ https://awesomized.github.io/ext-ion/latest/ │
+│ │
+└─────────────────────────────────────────────────────────┘
+
+```
+++ /dev/null
-version: '3'
-services:
- composer:
- container_name: m6w6/ext-ion-docs-composer
- restart: "no"
- volumes:
- - ./:/app
- build: .
- user: "1000"
--- /dev/null
+FROM ext-ion/docs:php
+
+USER root
+RUN \
+ curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/2.2.5/composer.phar &&\
+ chmod +x /usr/local/bin/composer
+
+USER user
+ENTRYPOINT ["/usr/local/bin/composer"]
--- /dev/null
+FROM php:8.1-cli
+
+RUN apt-get update -qy \
+ && DEBIAN_FRONTEND=noninteractive \
+ apt-get install -qy \
+ build-essential \
+ git \
+ unzip \
+ libcurl4-openssl-dev \
+ libicu-dev \
+ libssl-dev \
+ zlib1g-dev \
+ && rm -rf /var/lib/apt/lists/*
+
+WORKDIR /tmp
+
+RUN \
+ curl -sSLO https://replicator.pharext.org/phars/raphf/raphf-2.0.1.ext.phar &&\
+ curl -sSLO https://replicator.pharext.org/phars/pecl_http/pecl_http-4.2.1.ext.phar &&\
+ touch /usr/local/etc/php/conf.d/pecl.ini &&\
+ php raphf-*.ext.phar -vi /usr/local/etc/php/conf.d/pecl.ini &&\
+ php pecl_http-*.ext.phar -vi /usr/local/etc/php/conf.d/pecl.ini &&\
+ rm -f *.ext.phar
+
+WORKDIR /app
+
+# UID is readonly in shell env
+ARG USERID=1000
+RUN useradd -M -N -d /app -g users -u $USERID -o user
+
+USER user
+ENTRYPOINT ["/usr/local/bin/php"]
--- /dev/null
+version: '3'
+services:
+ php:
+ image: ext-ion/docs:php
+ restart: "no"
+ volumes:
+ - ../:/app
+ build:
+ dockerfile: Dockerfile.php
+ context: .
+ args:
+ USERID: ${UID:-1000}
+ composer:
+ image: ext-ion/docs:composer
+ restart: "no"
+ volumes:
+ - ../:/app
+ build:
+ dockerfile: Dockerfile.composer
+ context: .
+ caddy:
+ image: caddy
+ restart: "no"
+ volumes:
+ - ../:/srv
+ command:
+ - caddy
+ - run
--- /dev/null
+{
+ "name": "ion",
+ "origin": "github.com/awesomized/ext-ion",
+ "branch": "master",
+ "editUrl": "https://github.com/awesomized/ext-ion/edit/master/ion.stub.php",
+ "commentProvider": {
+ "giscus": {
+ "data": {
+ "repo": "awesomized/ext-ion",
+ "category": "Comments on Docs",
+ "repo-id": "R_kgDOGfXEXw",
+ "category-id": "DIC_kwDOGfXEX84CBHuf",
+ "mapping": "og:title",
+ "input-position": "bottom",
+ "reactions-enabled": false,
+ "theme": "light",
+ "lang": "en"
+ }
+ }
+ }
+}
html {
- font-size: 18px;
+ font-size: 16px;
}
html, body{
height: 100%;
min-height: 100%;
}
body, code {
- font-family: Inconsolata, 'Inconsolata Awesome', 'Andale Mono', Monaco, 'Courier New', Courier, monospace;
+ font-family:
+ 'DejaVu Sans Mono', 'Liberation Mono',
+ 'Andale Mono', Monaco, Menlo,
+ monospace;
+ /*
+ Mitra Mono has broken kerning?
+ Ubuntu Mono is too small!
+ */
}
body {
line-height: 1.5;
position: relative;
top: 2em;
right: 0;
- -webkit-transform: rotate(45deg);
transform: rotate(45deg);
text-decoration: none;
font-weight: bold;
color: #999999;
opacity: 0.25;
}
+.blink {
+ color: red !important;
+}
+.fade-out {
+ opacity: 0;
+}
+.fade-in {
+ opacity: 1;
+}
+.trans-slow {
+ transition: all 600ms;
+}
+.trans-fast {
+ transition: all 200ms;
+}
.var {
color: #800000;
color: #2e8b57;
}
-h1, li h3, th, footer {
+h1, th, footer {
background: #708090;
color: #f5f5dc;
}
margin-right: -.6em;
}
-li h3 {
- border-radius: 4px;
- display: inline-block;
- width: auto;
- padding: .2em;
- margin: .5em 0 0 0;
-}
-
div.page>h3, div.page>div>h3 {
margin-left: 1.25em;
}
margin-left: 2em;
}
-h1 .constant, pre>code .consant, li h3 .constant {
+h1 .constant, pre>code .consant {
color: #98fb98;
}
-h1 .var, pre>code .var, li h3 .var {
+h1 .var, pre>code .var {
color: #f4a460;
}
h1 {
h4 {
font-size: 100%;
}
-footer a, h1 a, pre>code a, li h3 a {
+footer a, h1 a, pre>code a {
color: #b0e0e6;
}
-li h3 {
+
+ul.sub-entries li {
+ list-style: circle;
+ margin-bottom: 2em;
}
li h3 a {
text-decoration: none;
text-decoration: underline;
}
-#disqus_thread {
- margin-top: 8em;
- margin-right: 2em;
+.comments {
+ width: 80%;
}
-#disqus_activator {
- margin: auto;
+.comments .activator {
width: 80%;
+ display: inline-block;
+ margin: auto;
padding: 1em;
background-color: slategrey;
color: white;
line-height: 1.33;
margin-left: 1em;
}
-h1, footer, table, .sidebar, pre>code, li h3 {
+h1, footer, table, .sidebar, pre>code {
box-shadow: 0 0 4px #708090;
}
<title>
mdref
</title>
+ <meta property="og:title" content="mdref">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
2022-01-28 09:29:47 UTC </small>
</li>
</ul>
- </div>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = '';
- </script>
-
+ </div>
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
"use strict";
-$(function() {
- var mdref = {
- log: function log() {
- console.log.apply(console, arguments);
- },
- blink: function blink(c) {
- var $c = $(c);
-
- $c.fadeOut("fast").queue(function(next) {
- this.style.color = "red";
- next();
- }).fadeIn("fast").fadeOut("slow").queue(function(next) {
- this.style.color = "";
- next();
- }).fadeIn("slow");
- },
- hashchange: function hashchange() {
- if (location.hash.length > 1) {
- var hash = decodeURIComponent(location.hash.substring(1));
- var e;
- if ((e = document.getElementById(location.hash.substring(1)))) {
- mdref.blink(e);
- } else {
- var scrolled = false;
-
- if (hash.substring(hash.length-1) === "*") {
- hash = hash.substring(0, hash.length-1);
- }
- $((hash.substring(0,1) === "$") ? ".var" : ".constant").each(function(i, c) {
- if (c.textContent.substring(0, hash.length) === hash) {
- if (!scrolled) {
- $(window).scrollTop($(c).offset().top - 100);
- scrolled = true;
- }
- mdref.blink(c);
- }
- });
+document.addEventListener("DOMContentLoaded", function() {
+ const doTransition = function(e, trans, state, speed) {
+ e.classList.remove(trans + "-in", trans + "-out", "trans-slow", "trans-fast");
+ e.classList.add(trans + "-" + state, "trans-" + speed);
+ return (cb) => setTimeout(cb, speed === "slow" ? 600 : 200);
+ };
+ const letElementBlink = function(e, last) {
+ setTimeout(() => doTransition(e, "fade", "out", "fast")(function() {
+ e.classList.add("blink");
+ doTransition(e, "fade", "in", "fast")(function() {
+ e.classList.remove("blink");
+ doTransition(e, "fade", "out", "slow")(function () {
+ doTransition(e, "fade", "in", "slow");
+ });
+ });
+ }), 200);
+ };
+ const onHashChange = function() {
+ if (location.hash.length > 1) {
+ let hash = decodeURIComponent(location.hash.substring(1));
+ let e = document.getElementById(hash) || document.getElementById(location.hash.substring(1));
+ if (e) {
+ letElementBlink(e);
+ } else {
+ if (hash.substring(hash.length-1) === "*") {
+ hash = hash.substring(0, hash.length-1);
}
+ let klass = (hash.substring(0,1) === "$") ? "var" : "constant";
+ let scrolled = false;
+ Array.prototype.forEach.call(document.getElementsByClassName(klass), function(e) {
+ if (e.textContent.substring(0, hash.length) !== hash) {
+ return;
+ }
+ if (!scrolled) {
+ scrolled = true;
+ window.scrollTo(0, e.offsetTop > 64 ? e.offsetTop - 64 : 0);
+ }
+ letElementBlink(e);
+ });
}
}
};
- $(window).on("hashchange", mdref.hashchange);
- mdref.hashchange();
-
- $("#disqus_activator").on("click", function() {
- var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
- dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
- (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
- });
- $.ajax("https://disqus.com/api/3.0/threads/details.json?thread:ident="+(disqus_identifier||"index")+"&forum=mdref&api_key=VmhVG4z5jjtY8SCaMstOjfUuwniMv43Xy9FCU9YfEzhsrl95dNz1epykXSJn8jt9"). then(function(json) {
- if (json && json.response) {
- $("#disqus_activator span").text(json.response.posts);
- }
- });
- setTimeout(function() {
- $("footer").addClass("hidden");
- }, 1000);
-});
+ onHashChange();
+ window.addEventListener("hashchange", onHashChange);
+ setTimeout(()=>document.getElementsByTagName("footer")[0].classList.add("hidden"), 1000);
+})
ion -
mdref
</title>
+ <meta property="og:title" content="ion">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</li>
</ul>
</div><h2 id="Functions:">Functions:<a class="permalink" href="ion#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="serialize">
</li>
</ul><h2 id="Namespaces.Interfaces.and.Classes:">Namespaces, Interfaces and Classes:<a class="permalink" href="ion#Namespaces.Interfaces.and.Classes:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-ns-classes">
<li>
<h3 id="Catalog">
<p><em>interface</em> <a href="ion/Writer">ion\Writer</a></p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
★ Contributing -
mdref
</title>
+ <meta property="og:title" content="ion/: Contributing">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/: Contributing">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/: Contributing">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
when an individual is representing the project or its community.</p><p>Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by opening an issue or contacting one or more of the project maintainers.</p><p>This Code of Conduct is adapted from the
<a href="http://contributor-covenant.org">Contributor Covenant</a>, version 1.2.0,
-available at <a href="http://contributor-covenant.org/version/1/2/0/">http://contributor-covenant.org/version/1/2/0/</a>.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/: Contributing';
- </script>
-
+available at <a href="http://contributor-covenant.org/version/1/2/0/">http://contributor-covenant.org/version/1/2/0/</a>.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
★ Security -
mdref
</title>
+ <meta property="og:title" content="ion/: Security">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/: Security">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/: Security">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
have been fixed.</p><p>This is free and open source software provided under the the terms of
the 2-Clause-BSD-License, see the <a href="./LICENSE">LICENSE</a> file.
Thus, honor and goodwill is all being offered for reporting
--- or even fixing -- any vulnerability.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/: Security';
- </script>
-
+-- or even fixing -- any vulnerability.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Catalog -
mdref
</title>
+ <meta property="og:title" content="ion\Catalog">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Catalog">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Catalog">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
)<br>
Internal cache.</li>
</ul><h2 id="Functions:">Functions:<a class="permalink" href="ion/Catalog#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Catalog::__construct">
<p><code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <a href="ion/Catalog/remove">ion\Catalog::remove</a>(<a href="ion/Symbol/Table">ion\Symbol\Table</a>|<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var">$table</span>)</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Catalog';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Catalog::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\Catalog::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Catalog/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Catalog/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Catalog/__construct#">#</a><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Catalog/__construct">ion\Catalog::__construct</a>()</h1><p>Create a new Catalog.</p><h2 id="Params:">Params:<a class="permalink" href="ion/Catalog/__construct#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Catalog/__construct';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Catalog::add -
mdref
</title>
+ <meta property="og:title" content="ion\Catalog::add">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Catalog/add">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Catalog/add">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<a href="ion/Symbol/Table">ion\Symbol\Table</a> <span class="var" id="$table">$table<a class="permalink" href="ion/Catalog/add#%24table">#</a></span><br>
The new table to add.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Catalog/add';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Catalog::find -
mdref
</title>
+ <meta property="og:title" content="ion\Catalog::find">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Catalog/find">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Catalog/find">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<a href="ion/Symbol/Table">\Symbol\Table</a>|<code><a href="https://php.net/manual/en/language.types.null">null</a></code>, The symbol table found, if any.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Catalog/find';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Catalog::findBest -
mdref
</title>
+ <meta property="og:title" content="ion\Catalog::findBest">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Catalog/findBest">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Catalog/findBest">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<a href="ion/Symbol/Table">\Symbol\Table</a>|<code><a href="https://php.net/manual/en/language.types.null">null</a></code>, The symbol table found, if any.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Catalog/findBest';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Catalog::remove -
mdref
</title>
+ <meta property="og:title" content="ion\Catalog::remove">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Catalog/remove">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Catalog/remove">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code>, Success.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Catalog/remove';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Decimal -
mdref
</title>
+ <meta property="og:title" content="ion\Decimal">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Decimal">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Decimal">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<em>public</em> ?<a href="ion/Decimal/Context">ion\Decimal\Context</a> <span class="var" id="$context">$context<a class="permalink" href="ion/Decimal#%24context">#</a></span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code><br>
The decimal context.</li>
</ul><h2 id="Functions:">Functions:<a class="permalink" href="ion/Decimal#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Decimal::__construct">
</li>
</ul><h2 id="Namespaces.Interfaces.and.Classes:">Namespaces, Interfaces and Classes:<a class="permalink" href="ion/Decimal#Namespaces.Interfaces.and.Classes:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-ns-classes">
<li>
<h3 id="Context">
<p><em>class</em> <a href="ion/Decimal/Context">ion\Decimal\Context</a></p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Decimal';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Context -
mdref
</title>
+ <meta property="og:title" content="ion\Decimal\Context">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Decimal/Context">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Decimal/Context">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<em>public</em> <code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var" id="$clamp">$clamp<a class="permalink" href="ion/Decimal/Context#%24clamp">#</a></span><br>
Whether to clamp.</li>
</ul><h2 id="Functions:">Functions:<a class="permalink" href="ion/Decimal/Context#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Context::__construct">
</li>
</ul><h2 id="Namespaces.Interfaces.and.Classes:">Namespaces, Interfaces and Classes:<a class="permalink" href="ion/Decimal/Context#Namespaces.Interfaces.and.Classes:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-ns-classes">
<li>
<h3 id="Dec128">
<p><code><a href="https://php.net/manual/en/language.types.enumerations">enum</a></code> <a href="ion/Decimal/Context/Rounding">ion\Decimal\Context\Rounding</a> <em>implements</em> <code><a href="https://php.net/manual/en/class.backedenum">BackedEnum</a></code></p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Decimal/Context';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Dec128 -
mdref
</title>
+ <meta property="og:title" content="ion\Decimal\Context\Dec128">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Decimal/Context/Dec128">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Decimal/Context/Dec128">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Decimal/Context/Dec128#">#</a><em>static</em> <a href="ion/Decimal/Context">ion\Decimal\Context</a> <a href="ion/Decimal/Context/Dec128">ion\Decimal\Context::Dec128</a>()</h1><p>Create a context suitable for 128bit decimals.</p><h2 id="Params:">Params:<a class="permalink" href="ion/Decimal/Context/Dec128#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Decimal/Context/Dec128';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Dec32 -
mdref
</title>
+ <meta property="og:title" content="ion\Decimal\Context\Dec32">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Decimal/Context/Dec32">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Decimal/Context/Dec32">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Decimal/Context/Dec32#">#</a><em>static</em> <a href="ion/Decimal/Context">ion\Decimal\Context</a> <a href="ion/Decimal/Context/Dec32">ion\Decimal\Context::Dec32</a>()</h1><p>Create a context suitable for 32bit decimals.</p><h2 id="Params:">Params:<a class="permalink" href="ion/Decimal/Context/Dec32#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Decimal/Context/Dec32';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Dec64 -
mdref
</title>
+ <meta property="og:title" content="ion\Decimal\Context\Dec64">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Decimal/Context/Dec64">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Decimal/Context/Dec64">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Decimal/Context/Dec64#">#</a><em>static</em> <a href="ion/Decimal/Context">ion\Decimal\Context</a> <a href="ion/Decimal/Context/Dec64">ion\Decimal\Context::Dec64</a>()</h1><p>Create a context suitable for 64bit decimals.</p><h2 id="Params:">Params:<a class="permalink" href="ion/Decimal/Context/Dec64#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Decimal/Context/Dec64';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
DecMax -
mdref
</title>
+ <meta property="og:title" content="ion\Decimal\Context\DecMax">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Decimal/Context/DecMax">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Decimal/Context/DecMax">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>Optional <a href="ion/Decimal/Context/Rounding">ion\Decimal\Context\Rounding</a>|<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var" id="$round">$round<a class="permalink" href="ion/Decimal/Context/DecMax#%24round">#</a></span> = <a href="ion/Decimal/Context/Rounding#HalfEven">ion\Decimal\Context\Rounding::HalfEven</a><br>
Rounding mode.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Decimal/Context/DecMax';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Rounding -
mdref
</title>
+ <meta property="og:title" content="ion\Decimal\Context\Rounding">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Decimal/Context/Rounding">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Decimal/Context/Rounding">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<em>public</em> <code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var" id="$value">$value<a class="permalink" href="ion/Decimal/Context/Rounding#%24value">#</a></span><br>
Rounding mode.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Decimal/Context/Rounding';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Context::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\Decimal\Context::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Decimal/Context/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Decimal/Context/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var" id="$clamp">$clamp<a class="permalink" href="ion/Decimal/Context/__construct#%24clamp">#</a></span><br>
Whether to clamp.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Decimal/Context/__construct';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Decimal::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\Decimal::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Decimal/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Decimal/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
The decimal number.</li>
<li>Optional ?<a href="ion/Decimal/Context">ion\Decimal\Context</a> <span class="var" id="$context">$context<a class="permalink" href="ion/Decimal/__construct#%24context">#</a></span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code><br>
The decimal context.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Decimal/__construct';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Decimal::equals -
mdref
</title>
+ <meta property="og:title" content="ion\Decimal::equals">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Decimal/equals">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Decimal/equals">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code>, Whether both decimals equal.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Decimal/equals';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Decimal::isInt -
mdref
</title>
+ <meta property="og:title" content="ion\Decimal::isInt">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Decimal/isInt">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Decimal/isInt">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code>, Whether the decimal is actually an <code><a href="https://php.net/manual/en/language.types.integer">integer</a></code>.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Decimal/isInt';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Decimal::toInt -
mdref
</title>
+ <meta property="og:title" content="ion\Decimal::toInt">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Decimal/toInt">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Decimal/toInt">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<a href="ion/Exception">\ion\Exception</a>, If the decimal is actually not an <code><a href="https://php.net/manual/en/language.types.integer">integer</a></code>.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Decimal/toInt';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Decimal::toString -
mdref
</title>
+ <meta property="og:title" content="ion\Decimal::toString">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Decimal/toString">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Decimal/toString">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Decimal/toString#">#</a><code><a href="https://php.net/manual/en/language.types.string">string</a></code> <a href="ion/Decimal/toString">ion\Decimal::toString</a>()</h1><p>Get the <code><a href="https://php.net/manual/en/language.types.string">string</a></code> representation of the decimal.</p><h2 id="Params:">Params:<a class="permalink" href="ion/Decimal/toString#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Decimal/toString';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Exception -
mdref
</title>
+ <meta property="og:title" content="ion\Exception">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Exception">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Exception">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<a class="permalink" href="ion/Exception#">#</a><em>class</em> <a href="ion/Exception">ion\Exception</a> <br> <em>extends</em> <code><a href="https://php.net/manual/en/class.exception">Exception</a></code> <br> <em>implements</em> <code><a href="https://php.net/manual/en/class.throwable">Throwable</a></code>
</h1><p>Base exception for the ION extension.</p><h2 id="Constants:">Constants:<a class="permalink" href="ion/Exception#Constants:">#</a>
</h2><p>None.</p><h2 id="Properties:">Properties:<a class="permalink" href="ion/Exception#Properties:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Exception';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
LOB -
mdref
</title>
+ <meta property="og:title" content="ion\LOB">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/LOB">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/LOB">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<em>public</em> <a href="ion/Type">ion\Type</a> <span class="var" id="$type">$type<a class="permalink" href="ion/LOB#%24type">#</a></span> = <a href="ion/Type#CLob">ion\Type::CLob</a><br>
The type (CLob/BLob).</li>
</ul><h2 id="Functions:">Functions:<a class="permalink" href="ion/LOB#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="LOB::__construct">
<p><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/LOB/__construct">ion\LOB::__construct</a>(<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var">$value</span>, [<a href="ion/Type">ion\Type</a> <span class="var">$type</span> = <a href="ion/Type#CLob">ion\Type::CLob</a>])</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/LOB';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
LOB::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\LOB::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/LOB/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/LOB/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
The value of the large object.</li>
<li>Optional <a href="ion/Type">ion\Type</a> <span class="var" id="$type">$type<a class="permalink" href="ion/LOB/__construct#%24type">#</a></span> = <a href="ion/Type#CLob">ion\Type::CLob</a><br>
The type (CLob/BLob).</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/LOB/__construct';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader -
mdref
</title>
+ <meta property="og:title" content="ion\Reader">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h1><p>ION reader API.</p><h2 id="Constants:">Constants:<a class="permalink" href="ion/Reader#Constants:">#</a>
</h2><p>None.</p><h2 id="Properties:">Properties:<a class="permalink" href="ion/Reader#Properties:">#</a>
</h2><p>None.</p><h2 id="Functions:">Functions:<a class="permalink" href="ion/Reader#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Reader::countAnnotations">
</li>
</ul><h2 id="Namespaces.Interfaces.and.Classes:">Namespaces, Interfaces and Classes:<a class="permalink" href="ion/Reader#Namespaces.Interfaces.and.Classes:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-ns-classes">
<li>
<h3 id="Buffer">
<p><em>interface</em> <a href="ion/Reader/Stream">ion\Reader\Stream</a> <em>implements</em> <a href="ion/Reader">ion\Reader</a></p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Buffer -
mdref
</title>
+ <meta property="og:title" content="ion\Reader\Buffer">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/Buffer">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/Buffer">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h1><p>ION <code><a href="https://php.net/manual/en/language.types.string">string</a></code> buffer reader API.</p><h2 id="Constants:">Constants:<a class="permalink" href="ion/Reader/Buffer#Constants:">#</a>
</h2><p>None.</p><h2 id="Properties:">Properties:<a class="permalink" href="ion/Reader/Buffer#Properties:">#</a>
</h2><p>None.</p><h2 id="Functions:">Functions:<a class="permalink" href="ion/Reader/Buffer#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Buffer::getBuffer">
</li>
</ul><h2 id="Namespaces.Interfaces.and.Classes:">Namespaces, Interfaces and Classes:<a class="permalink" href="ion/Reader/Buffer#Namespaces.Interfaces.and.Classes:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-ns-classes">
<li>
<h3 id="Reader">
<p><em>class</em> <a href="ion/Reader/Buffer/Reader">ion\Reader\Buffer\Reader</a> <em>extends</em> <a href="ion/Reader/Reader">ion\Reader\Reader</a> <em>implements</em> <a href="ion/Reader/Buffer">ion\Reader\Buffer</a></p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/Buffer';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader -
mdref
</title>
+ <meta property="og:title" content="ion\Reader\Buffer\Reader">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/Buffer/Reader">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/Buffer/Reader">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h1><p>ION buffer reader.</p><h2 id="Constants:">Constants:<a class="permalink" href="ion/Reader/Buffer/Reader#Constants:">#</a>
</h2><p>None.</p><h2 id="Properties:">Properties:<a class="permalink" href="ion/Reader/Buffer/Reader#Properties:">#</a>
</h2><p>None.</p><h2 id="Functions:">Functions:<a class="permalink" href="ion/Reader/Buffer/Reader#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Reader::__construct">
<p><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Reader/Buffer/Reader/__construct">ion\Reader\Buffer\Reader::__construct</a>(<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var">$buffer</span>, [?<a href="ion/Reader/Options">ion\Reader\Options</a> <span class="var">$options</span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code>])</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/Buffer/Reader';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\Reader\Buffer\Reader::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/Buffer/Reader/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/Buffer/Reader/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
The buffer to read from.</li>
<li>Optional ?<a href="ion/Reader/Options">ion\Reader\Options</a> <span class="var" id="$options">$options<a class="permalink" href="ion/Reader/Buffer/Reader/__construct#%24options">#</a></span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code><br>
Reader options.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/Buffer/Reader/__construct';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Buffer::getBuffer -
mdref
</title>
+ <meta property="og:title" content="ion\Reader\Buffer::getBuffer">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/Buffer/getBuffer">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/Buffer/getBuffer">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<code><a href="https://php.net/manual/en/language.types.string">string</a></code>, The buffer read from.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/Buffer/getBuffer';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Options -
mdref
</title>
+ <meta property="og:title" content="ion\Reader\Options">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/Options">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/Options">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<em>public</em> <code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var" id="$skipCharacterValidation">$skipCharacterValidation<a class="permalink" href="ion/Reader/Options#%24skipCharacterValidation">#</a></span> = <code><a href="https://php.net/manual/en/language.types.boolean">false</a></code><br>
Whether to skip <span class="constant">UTF</span>-8 validation.</li>
</ul><h2 id="Functions:">Functions:<a class="permalink" href="ion/Reader/Options#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Options::__construct">
<p><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Reader/Options/__construct">ion\Reader\Options::__construct</a>([?<a href="ion/Catalog">ion\Catalog</a> <span class="var">$catalog</span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code>, [?<a href="ion/Decimal/Context">ion\Decimal\Context</a> <span class="var">$decimalContext</span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code>, [?<code><a href="https://php.net/manual/en/class.closure">Closure</a></code> <span class="var">$onContextChange</span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code>, [<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var">$returnSystemValues</span> = <code><a href="https://php.net/manual/en/language.types.boolean">false</a></code>, [<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var">$maxContainerDepth</span> = 10, [<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var">$maxAnnotations</span> = 10, [<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var">$annotationBufferSize</span> = 16384, [<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var">$tempBufferSize</span> = 16384, [<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var">$skipCharacterValidation</span> = <code><a href="https://php.net/manual/en/language.types.boolean">false</a></code>]]]]]]]]])</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/Options';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Options::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\Reader\Options::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/Options/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/Options/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
The maximum number of bytes of a symbol/value/chunk.</li>
<li>Optional <code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var" id="$skipCharacterValidation">$skipCharacterValidation<a class="permalink" href="ion/Reader/Options/__construct#%24skipCharacterValidation">#</a></span> = <code><a href="https://php.net/manual/en/language.types.boolean">false</a></code><br>
Whether to skip UTF-8 validation.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/Options/__construct';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader -
mdref
</title>
+ <meta property="og:title" content="ion\Reader\Reader">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/Reader">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/Reader">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<em>public</em> ?<a href="ion/Reader/Options">ion\Reader\Options</a> <span class="var" id="$options">$options<a class="permalink" href="ion/Reader/Reader#%24options">#</a></span><br>
Reader options.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/Reader';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Stream -
mdref
</title>
+ <meta property="og:title" content="ion\Reader\Stream">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/Stream">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/Stream">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h1><p>ION stream reader API.</p><h2 id="Constants:">Constants:<a class="permalink" href="ion/Reader/Stream#Constants:">#</a>
</h2><p>None.</p><h2 id="Properties:">Properties:<a class="permalink" href="ion/Reader/Stream#Properties:">#</a>
</h2><p>None.</p><h2 id="Functions:">Functions:<a class="permalink" href="ion/Reader/Stream#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Stream::getStream">
</li>
</ul><h2 id="Namespaces.Interfaces.and.Classes:">Namespaces, Interfaces and Classes:<a class="permalink" href="ion/Reader/Stream#Namespaces.Interfaces.and.Classes:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-ns-classes">
<li>
<h3 id="Reader">
<p><em>class</em> <a href="ion/Reader/Stream/Reader">ion\Reader\Stream\Reader</a> <em>extends</em> <a href="ion/Reader/Reader">ion\Reader\Reader</a> <em>implements</em> <a href="ion/Reader/Stream">ion\Reader\Stream</a></p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/Stream';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader -
mdref
</title>
+ <meta property="og:title" content="ion\Reader\Stream\Reader">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/Stream/Reader">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/Stream/Reader">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h1><p>ION stream reader.</p><h2 id="Constants:">Constants:<a class="permalink" href="ion/Reader/Stream/Reader#Constants:">#</a>
</h2><p>None.</p><h2 id="Properties:">Properties:<a class="permalink" href="ion/Reader/Stream/Reader#Properties:">#</a>
</h2><p>None.</p><h2 id="Functions:">Functions:<a class="permalink" href="ion/Reader/Stream/Reader#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Reader::__construct">
<p><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Reader/Stream/Reader/__construct">ion\Reader\Stream\Reader::__construct</a>(<code><a href="https://php.net/manual/en/language.types.resource">resource</a></code> <span class="var">$stream</span>, [?<a href="ion/Reader/Options">ion\Reader\Options</a> <span class="var">$options</span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code>])</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/Stream/Reader';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\Reader\Stream\Reader::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/Stream/Reader/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/Stream/Reader/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
The stream to read from.</li>
<li>Optional ?<a href="ion/Reader/Options">ion\Reader\Options</a> <span class="var" id="$options">$options<a class="permalink" href="ion/Reader/Stream/Reader/__construct#%24options">#</a></span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code><br>
Reader options.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/Stream/Reader/__construct';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Stream::getStream -
mdref
</title>
+ <meta property="og:title" content="ion\Reader\Stream::getStream">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/Stream/getStream">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/Stream/getStream">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<code><a href="https://php.net/manual/en/language.types.resource">resource</a></code>, The stream read from.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/Stream/getStream';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Stream::resetStream -
mdref
</title>
+ <meta property="og:title" content="ion\Reader\Stream::resetStream">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/Stream/resetStream">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/Stream/resetStream">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.resource">resource</a></code> <span class="var" id="$stream">$stream<a class="permalink" href="ion/Reader/Stream/resetStream#%24stream">#</a></span><br>
The new stream to from.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/Stream/resetStream';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Stream::resetStreamWithLength -
mdref
</title>
+ <meta property="og:title" content="ion\Reader\Stream::resetStreamWithLength">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/Stream/resetStreamWithLength">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/Stream/resetStreamWithLength">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var" id="$length">$length<a class="permalink" href="ion/Reader/Stream/resetStreamWithLength#%24length">#</a></span><br>
The maximum length to read from <span class="var">$stream</span>.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/Stream/resetStreamWithLength';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::countAnnotations -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::countAnnotations">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/countAnnotations">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/countAnnotations">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/countAnnotations#">#</a><code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <a href="ion/Reader/countAnnotations">ion\Reader::countAnnotations</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/countAnnotations#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/countAnnotations';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::getAnnotation -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::getAnnotation">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/getAnnotation">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/getAnnotation">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var" id="$index">$index<a class="permalink" href="ion/Reader/getAnnotation#%24index">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/getAnnotation';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::getAnnotationSymbol -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::getAnnotationSymbol">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/getAnnotationSymbol">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/getAnnotationSymbol">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var" id="$index">$index<a class="permalink" href="ion/Reader/getAnnotationSymbol#%24index">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/getAnnotationSymbol';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::getAnnotationSymbols -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::getAnnotationSymbols">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/getAnnotationSymbols">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/getAnnotationSymbols">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/getAnnotationSymbols#">#</a><code><a href="https://php.net/manual/en/language.types.array">array</a></code> <a href="ion/Reader/getAnnotationSymbols">ion\Reader::getAnnotationSymbols</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/getAnnotationSymbols#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/getAnnotationSymbols';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::getAnnotations -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::getAnnotations">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/getAnnotations">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/getAnnotations">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/getAnnotations#">#</a><code><a href="https://php.net/manual/en/language.types.array">array</a></code> <a href="ion/Reader/getAnnotations">ion\Reader::getAnnotations</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/getAnnotations#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/getAnnotations';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::getDepth -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::getDepth">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/getDepth">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/getDepth">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/getDepth#">#</a><code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <a href="ion/Reader/getDepth">ion\Reader::getDepth</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/getDepth#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/getDepth';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::getFieldName -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::getFieldName">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/getFieldName">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/getFieldName">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/getFieldName#">#</a><code><a href="https://php.net/manual/en/language.types.string">string</a></code> <a href="ion/Reader/getFieldName">ion\Reader::getFieldName</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/getFieldName#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/getFieldName';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::getFieldNameSymbol -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::getFieldNameSymbol">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/getFieldNameSymbol">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/getFieldNameSymbol">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/getFieldNameSymbol#">#</a><a href="ion/Symbol">ion\Symbol</a> <a href="ion/Reader/getFieldNameSymbol">ion\Reader::getFieldNameSymbol</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/getFieldNameSymbol#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/getFieldNameSymbol';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::getPosition -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::getPosition">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/getPosition">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/getPosition">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/getPosition#">#</a><code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <a href="ion/Reader/getPosition">ion\Reader::getPosition</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/getPosition#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/getPosition';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::getType -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::getType">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/getType">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/getType">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/getType#">#</a><a href="ion/Type">ion\Type</a> <a href="ion/Reader/getType">ion\Reader::getType</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/getType#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/getType';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::getValueLength -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::getValueLength">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/getValueLength">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/getValueLength">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/getValueLength#">#</a><code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <a href="ion/Reader/getValueLength">ion\Reader::getValueLength</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/getValueLength#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/getValueLength';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::getValueOffset -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::getValueOffset">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/getValueOffset">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/getValueOffset">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/getValueOffset#">#</a><code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <a href="ion/Reader/getValueOffset">ion\Reader::getValueOffset</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/getValueOffset#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/getValueOffset';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::hasAnnotation -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::hasAnnotation">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/hasAnnotation">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/hasAnnotation">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$annotation">$annotation<a class="permalink" href="ion/Reader/hasAnnotation#%24annotation">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/hasAnnotation';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::hasAnnotations -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::hasAnnotations">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/hasAnnotations">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/hasAnnotations">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/hasAnnotations#">#</a><code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <a href="ion/Reader/hasAnnotations">ion\Reader::hasAnnotations</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/hasAnnotations#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/hasAnnotations';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::isInStruct -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::isInStruct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/isInStruct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/isInStruct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/isInStruct#">#</a><code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <a href="ion/Reader/isInStruct">ion\Reader::isInStruct</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/isInStruct#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/isInStruct';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::isNull -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::isNull">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/isNull">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/isNull">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/isNull#">#</a><code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <a href="ion/Reader/isNull">ion\Reader::isNull</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/isNull#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/isNull';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::readBool -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::readBool">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/readBool">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/readBool">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/readBool#">#</a><code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <a href="ion/Reader/readBool">ion\Reader::readBool</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/readBool#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/readBool';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::readDecimal -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::readDecimal">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/readDecimal">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/readDecimal">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/readDecimal#">#</a><a href="ion/Decimal">ion\Decimal</a> <a href="ion/Reader/readDecimal">ion\Reader::readDecimal</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/readDecimal#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/readDecimal';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::readFloat -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::readFloat">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/readFloat">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/readFloat">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/readFloat#">#</a><code><a href="https://php.net/manual/en/language.types.float">float</a></code> <a href="ion/Reader/readFloat">ion\Reader::readFloat</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/readFloat#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/readFloat';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::readInt -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::readInt">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/readInt">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/readInt">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/readInt#">#</a><code><a href="https://php.net/manual/en/language.types.string">string</a></code>|<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <a href="ion/Reader/readInt">ion\Reader::readInt</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/readInt#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/readInt';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::readLob -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::readLob">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/readLob">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/readLob">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/readLob#">#</a><code><a href="https://php.net/manual/en/language.types.string">string</a></code> <a href="ion/Reader/readLob">ion\Reader::readLob</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/readLob#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/readLob';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::readLobPart -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::readLobPart">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/readLobPart">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/readLobPart">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<p>Optional <code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var">$length</span> = 4096</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/readLobPart';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::readNull -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::readNull">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/readNull">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/readNull">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/readNull#">#</a><a href="ion/Type">ion\Type</a> <a href="ion/Reader/readNull">ion\Reader::readNull</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/readNull#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/readNull';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::readString -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::readString">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/readString">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/readString">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/readString#">#</a><code><a href="https://php.net/manual/en/language.types.string">string</a></code> <a href="ion/Reader/readString">ion\Reader::readString</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/readString#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/readString';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::readStringPart -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::readStringPart">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/readStringPart">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/readStringPart">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<p>Optional <code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var">$length</span> = 4096</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/readStringPart';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::readSymbol -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::readSymbol">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/readSymbol">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/readSymbol">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/readSymbol#">#</a><a href="ion/Symbol">ion\Symbol</a> <a href="ion/Reader/readSymbol">ion\Reader::readSymbol</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/readSymbol#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/readSymbol';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::readTimestamp -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::readTimestamp">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/readTimestamp">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/readTimestamp">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Reader/readTimestamp#">#</a><a href="ion/Timestamp">ion\Timestamp</a> <a href="ion/Reader/readTimestamp">ion\Reader::readTimestamp</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Reader/readTimestamp#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/readTimestamp';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Reader::seek -
mdref
</title>
+ <meta property="og:title" content="ion\Reader::seek">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Reader/seek">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Reader/seek">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var" id="$offset">$offset<a class="permalink" href="ion/Reader/seek#%24offset">#</a></span>
</li>
<li>Optional <code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var" id="$length">$length<a class="permalink" href="ion/Reader/seek#%24length">#</a></span> = -1</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Reader/seek';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Serializer -
mdref
</title>
+ <meta property="og:title" content="ion\Serializer">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Serializer">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Serializer">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h1><p>Serializer <em>interface</em>, used to customize <a href="ion/serialize">ion\serialize</a>()'s behavior.</p><h2 id="Constants:">Constants:<a class="permalink" href="ion/Serializer#Constants:">#</a>
</h2><p>None.</p><h2 id="Properties:">Properties:<a class="permalink" href="ion/Serializer#Properties:">#</a>
</h2><p>None.</p><h2 id="Functions:">Functions:<a class="permalink" href="ion/Serializer#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Serializer::serialize">
</li>
</ul><h2 id="Namespaces.Interfaces.and.Classes:">Namespaces, Interfaces and Classes:<a class="permalink" href="ion/Serializer#Namespaces.Interfaces.and.Classes:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-ns-classes">
<li>
<h3 id="PHP">
<p><em>class</em> <a href="ion/Serializer/PHP">ion\Serializer\PHP</a> <em>implements</em> <a href="ion/Serializer">ion\Serializer</a></p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Serializer';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
PHP -
mdref
</title>
+ <meta property="og:title" content="ion\Serializer\PHP">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Serializer/PHP">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Serializer/PHP">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<em>public</em> ?<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$callCustomSerialize">$callCustomSerialize<a class="permalink" href="ion/Serializer/PHP#%24callCustomSerialize">#</a></span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code><br>
Whether and which custom serialize method to call on objects to serialize.</li>
</ul><h2 id="Functions:">Functions:<a class="permalink" href="ion/Serializer/PHP#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="PHP::__construct">
<p><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Serializer/PHP/__construct">ion\Serializer\PHP::__construct</a>([?<a href="ion/Writer/Options">ion\Writer\Options</a> <span class="var">$writerOptions</span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code>, [<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var">$multiSequence</span> = <code><a href="https://php.net/manual/en/language.types.boolean">false</a></code>, [<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var">$callMagicSerialize</span> = <code><a href="https://php.net/manual/en/language.types.boolean">true</a></code>, [?<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var">$callCustomSerialize</span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code>]]]])</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Serializer/PHP';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
PHP::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\Serializer\PHP::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Serializer/PHP/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Serializer/PHP/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
Whether to call magic __serialize() methods on objects to serialize.</li>
<li>Optional ?<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$callCustomSerialize">$callCustomSerialize<a class="permalink" href="ion/Serializer/PHP/__construct#%24callCustomSerialize">#</a></span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code><br>
Whether and which custom serialize method to call on objects to serialize.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Serializer/PHP/__construct';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Serializer::serialize -
mdref
</title>
+ <meta property="og:title" content="ion\Serializer::serialize">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Serializer/serialize">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Serializer/serialize">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.mixed">mixed</a></code> <span class="var" id="$data">$data<a class="permalink" href="ion/Serializer/serialize#%24data">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Serializer/serialize';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Symbol -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<em>public</em> ?<a href="ion/Symbol/ImportLocation">ion\Symbol\ImportLocation</a> <span class="var" id="$importLocation">$importLocation<a class="permalink" href="ion/Symbol#%24importLocation">#</a></span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code><br>
The import location referencing a shared symbol table.</li>
</ul><h2 id="Functions:">Functions:<a class="permalink" href="ion/Symbol#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Symbol::__construct">
</li>
</ul><h2 id="Namespaces.Interfaces.and.Classes:">Namespaces, Interfaces and Classes:<a class="permalink" href="ion/Symbol#Namespaces.Interfaces.and.Classes:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-ns-classes">
<li>
<h3 id="Enum">
<p><em>interface</em> <a href="ion/Symbol/Table">ion\Symbol\Table</a></p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Enum -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\Enum">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/Enum">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/Enum">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h1><p>Base <em>interface</em> of built-in shared symbol tables.</p><h2 id="Constants:">Constants:<a class="permalink" href="ion/Symbol/Enum#Constants:">#</a>
</h2><p>None.</p><h2 id="Properties:">Properties:<a class="permalink" href="ion/Symbol/Enum#Properties:">#</a>
</h2><p>None.</p><h2 id="Functions:">Functions:<a class="permalink" href="ion/Symbol/Enum#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Enum::toSID">
<p><a href="ion/Symbol">ion\Symbol</a> <a href="ion/Symbol/Enum/toSymbol">ion\Symbol\Enum::toSymbol</a>()</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/Enum';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Enum::toSID -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\Enum::toSID">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/Enum/toSID">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/Enum/toSID">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<code><a href="https://php.net/manual/en/language.types.integer">int</a></code>, The symbol id.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/Enum/toSID';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Enum::toString -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\Enum::toString">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/Enum/toString">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/Enum/toString">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<code><a href="https://php.net/manual/en/language.types.string">string</a></code>, The symbol's textual representation.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/Enum/toString';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Enum::toSymbol -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\Enum::toSymbol">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/Enum/toSymbol">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/Enum/toSymbol">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<a href="ion/Symbol">\ion\Symbol</a>, Instance of the symbol.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/Enum/toSymbol';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
ImportLocation -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\ImportLocation">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/ImportLocation">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/ImportLocation">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<em>public</em> <code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var" id="$location">$location<a class="permalink" href="ion/Symbol/ImportLocation#%24location">#</a></span><br>
The location (sid) of the symbol within the table.</li>
</ul><h2 id="Functions:">Functions:<a class="permalink" href="ion/Symbol/ImportLocation#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="ImportLocation::__construct">
<p><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Symbol/ImportLocation/__construct">ion\Symbol\ImportLocation::__construct</a>(<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var">$name</span>, <code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var">$location</span>)</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/ImportLocation';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
ImportLocation::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\ImportLocation::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/ImportLocation/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/ImportLocation/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var" id="$location">$location<a class="permalink" href="ion/Symbol/ImportLocation/__construct#%24location">#</a></span><br>
The location (sid) of the symbol within the table.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/ImportLocation/__construct';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
PHP -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\PHP">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/PHP">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/PHP">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<em>public</em> <code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$value">$value<a class="permalink" href="ion/Symbol/PHP#%24value">#</a></span><br>
The built-in <span class="constant">PHP</span> symbols.</li>
</ul><h2 id="Functions:">Functions:<a class="permalink" href="ion/Symbol/PHP#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="PHP::asTable">
<p><em>static</em> <a href="ion/Symbol/Table/Shared">ion\Symbol\Table\Shared</a> <a href="ion/Symbol/PHP/asTable">ion\Symbol\PHP::asTable</a>()</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/PHP';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
PHP::asTable -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\PHP::asTable">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/PHP/asTable">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/PHP/asTable">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><p>None.</p><h2 id="Returns:">Returns:<a class="permalink" href="ion/Symbol/PHP/asTable#Returns:">#</a>
</h2><ul>
<li>\Table\Shared, The builtin PHP shared symbol table.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/PHP/asTable';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
System -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\System">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/System">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/System">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<em>public</em> <code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$value">$value<a class="permalink" href="ion/Symbol/System#%24value">#</a></span><br>
The built-in <span class="constant">ION</span> system symbols.</li>
</ul><h2 id="Functions:">Functions:<a class="permalink" href="ion/Symbol/System#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="System::asTable">
<p><em>static</em> <a href="ion/Symbol/Table/Shared">ion\Symbol\Table\Shared</a> <a href="ion/Symbol/System/asTable">ion\Symbol\System::asTable</a>()</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/System';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
System::asTable -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\System::asTable">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/System/asTable">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/System/asTable">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><p>None.</p><h2 id="Returns:">Returns:<a class="permalink" href="ion/Symbol/System/asTable#Returns:">#</a>
</h2><ul>
<li>\Table\Shared, The system symbol table.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/System/asTable';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Table -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\Table">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/Table">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/Table">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h1><p>Base <em>interface</em> of an ION symbol table.</p><h2 id="Constants:">Constants:<a class="permalink" href="ion/Symbol/Table#Constants:">#</a>
</h2><p>None.</p><h2 id="Properties:">Properties:<a class="permalink" href="ion/Symbol/Table#Properties:">#</a>
</h2><p>None.</p><h2 id="Functions:">Functions:<a class="permalink" href="ion/Symbol/Table#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Table::add">
</li>
</ul><h2 id="Namespaces.Interfaces.and.Classes:">Namespaces, Interfaces and Classes:<a class="permalink" href="ion/Symbol/Table#Namespaces.Interfaces.and.Classes:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-ns-classes">
<li>
<h3 id="Local">
<p><em>class</em> <a href="ion/Symbol/Table/Shared">ion\Symbol\Table\Shared</a> <em>implements</em> <a href="ion/Symbol/Table">ion\Symbol\Table</a></p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/Table';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Local -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\Table\Local">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/Table/Local">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/Table/Local">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
)<br>
Internal cache.</li>
</ul><h2 id="Functions:">Functions:<a class="permalink" href="ion/Symbol/Table/Local#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Local::__construct">
<p><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Symbol/Table/Local/import">ion\Symbol\Table\Local::import</a>(<a href="ion/Symbol/Table">ion\Symbol\Table</a> <span class="var">$table</span>)</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/Table/Local';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Local::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\Table\Local::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/Table/Local/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/Table/Local/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Symbol/Table/Local/__construct#">#</a><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Symbol/Table/Local/__construct">ion\Symbol\Table\Local::__construct</a>()</h1><p>Create a local symbol table.</p><h2 id="Params:">Params:<a class="permalink" href="ion/Symbol/Table/Local/__construct#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/Table/Local/__construct';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Local::import -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\Table\Local::import">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/Table/Local/import">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/Table/Local/import">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code>,</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/Table/Local/import';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Shared -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\Table\Shared">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/Table/Shared">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/Table/Shared">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
)<br>
Internal cache.</li>
</ul><h2 id="Functions:">Functions:<a class="permalink" href="ion/Symbol/Table/Shared#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Shared::__construct">
<p><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Symbol/Table/Shared/__construct">ion\Symbol\Table\Shared::__construct</a>(<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var">$name</span>, [<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var">$version</span> = 1, [?<code><a href="https://php.net/manual/en/language.types.array">array</a></code> <span class="var">$symbols</span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code>]])</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/Table/Shared';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Shared::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\Table\Shared::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/Table/Shared/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/Table/Shared/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
The version of the shared symbol table.</li>
<li>Optional ?<code><a href="https://php.net/manual/en/language.types.array">array</a></code> <span class="var" id="$symbols">$symbols<a class="permalink" href="ion/Symbol/Table/Shared/__construct#%24symbols">#</a></span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code><br>
Internal cache.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/Table/Shared/__construct';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Table::add -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\Table::add">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/Table/add">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/Table/add">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<code><a href="https://php.net/manual/en/language.types.integer">int</a></code>, The symbol ID.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/Table/add';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Table::find -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\Table::find">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/Table/find">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/Table/find">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<a href="ion/Symbol">\ion\Symbol</a>|<code><a href="https://php.net/manual/en/language.types.null">null</a></code>, The symbol found, if any.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/Table/find';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Table::findLocal -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\Table::findLocal">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/Table/findLocal">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/Table/findLocal">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<a href="ion/Symbol">\ion\Symbol</a>|<code><a href="https://php.net/manual/en/language.types.null">null</a></code>, The symbol found, if any.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/Table/findLocal';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Table::getMaxId -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol\Table::getMaxId">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/Table/getMaxId">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/Table/getMaxId">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<code><a href="https://php.net/manual/en/language.types.integer">int</a></code>, The maximum symbol ID.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/Table/getMaxId';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Symbol::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
The symbols ID, referencing its location within a shared symbol table.</li>
<li>Optional ?<a href="ion/Symbol/ImportLocation">ion\Symbol\ImportLocation</a> <span class="var" id="$importLocation">$importLocation<a class="permalink" href="ion/Symbol/__construct#%24importLocation">#</a></span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code><br>
The import location referencing a shared symbol table.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/__construct';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Symbol::equals -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol::equals">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/equals">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/equals">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code>, whether the two Symbols equal</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/equals';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Symbol::toString -
mdref
</title>
+ <meta property="og:title" content="ion\Symbol::toString">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Symbol/toString">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Symbol/toString">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Symbol/toString#">#</a><code><a href="https://php.net/manual/en/language.types.string">string</a></code> <a href="ion/Symbol/toString">ion\Symbol::toString</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Symbol/toString#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Symbol/toString';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Timestamp -
mdref
</title>
+ <meta property="og:title" content="ion\Timestamp">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Timestamp">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Timestamp">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<em>public</em> <code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$format">$format<a class="permalink" href="ion/Timestamp#%24format">#</a></span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code><br>
The timestamp's format. See <a href="ion/Timestamp/Format">ion\Timestamp\Format</a>.</li>
</ul><h2 id="Functions:">Functions:<a class="permalink" href="ion/Timestamp#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Timestamp::__construct">
</li>
</ul><h2 id="Namespaces.Interfaces.and.Classes:">Namespaces, Interfaces and Classes:<a class="permalink" href="ion/Timestamp#Namespaces.Interfaces.and.Classes:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-ns-classes">
<li>
<h3 id="Format">
<p><code><a href="https://php.net/manual/en/language.types.enumerations">enum</a></code> <a href="ion/Timestamp/Precision">ion\Timestamp\Precision</a> <em>implements</em> <code><a href="https://php.net/manual/en/class.backedenum">BackedEnum</a></code></p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Timestamp';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Format -
mdref
</title>
+ <meta property="og:title" content="ion\Timestamp\Format">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Timestamp/Format">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Timestamp/Format">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<em>public</em> <code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$value">$value<a class="permalink" href="ion/Timestamp/Format#%24value">#</a></span><br>
Timestamp format.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Timestamp/Format';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Precision -
mdref
</title>
+ <meta property="og:title" content="ion\Timestamp\Precision">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Timestamp/Precision">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Timestamp/Precision">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<em>public</em> <code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var" id="$value">$value<a class="permalink" href="ion/Timestamp/Precision#%24value">#</a></span><br>
Timestamp precision.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Timestamp/Precision';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Timestamp::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\Timestamp::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Timestamp/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Timestamp/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
The timestamp's value.</li>
<li>Optional ?<code><a href="https://php.net/manual/en/class.datetimezone">DateTimeZone</a></code> <span class="var" id="$timezone">$timezone<a class="permalink" href="ion/Timestamp/__construct#%24timezone">#</a></span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code><br>
The timestamp's timezone.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Timestamp/__construct';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Type -
mdref
</title>
+ <meta property="og:title" content="ion\Type">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Type">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Type">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<em>public</em> <code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var" id="$value">$value<a class="permalink" href="ion/Type#%24value">#</a></span><br>
<span class="constant">ION</span> data type.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Type';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Unserializer -
mdref
</title>
+ <meta property="og:title" content="ion\Unserializer">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Unserializer">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Unserializer">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h1><p>Unserializer <em>interface</em>, used to customize <a href="ion/unserialize">ion\unserialize</a>()'s behavior.</p><h2 id="Constants:">Constants:<a class="permalink" href="ion/Unserializer#Constants:">#</a>
</h2><p>None.</p><h2 id="Properties:">Properties:<a class="permalink" href="ion/Unserializer#Properties:">#</a>
</h2><p>None.</p><h2 id="Functions:">Functions:<a class="permalink" href="ion/Unserializer#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Unserializer::unserialize">
</li>
</ul><h2 id="Namespaces.Interfaces.and.Classes:">Namespaces, Interfaces and Classes:<a class="permalink" href="ion/Unserializer#Namespaces.Interfaces.and.Classes:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-ns-classes">
<li>
<h3 id="PHP">
<p><em>class</em> <a href="ion/Unserializer/PHP">ion\Unserializer\PHP</a> <em>implements</em> <a href="ion/Unserializer">ion\Unserializer</a></p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Unserializer';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
PHP -
mdref
</title>
+ <meta property="og:title" content="ion\Unserializer\PHP">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Unserializer/PHP">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Unserializer/PHP">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<em>public</em> ?<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$callCustomUnserialize">$callCustomUnserialize<a class="permalink" href="ion/Unserializer/PHP#%24callCustomUnserialize">#</a></span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code><br>
Whether and which custom unserialize method to call on objects to unserialize.</li>
</ul><h2 id="Functions:">Functions:<a class="permalink" href="ion/Unserializer/PHP#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="PHP::__construct">
<p><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Unserializer/PHP/__construct">ion\Unserializer\PHP::__construct</a>([?<a href="ion/Reader/Options">ion\Reader\Options</a> <span class="var">$readerOptions</span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code>, [<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var">$multiSequence</span> = <code><a href="https://php.net/manual/en/language.types.boolean">false</a></code>, [<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var">$callMagicUnserialize</span> = <code><a href="https://php.net/manual/en/language.types.boolean">true</a></code>, [?<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var">$callCustomUnserialize</span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code>]]]])</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Unserializer/PHP';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
PHP::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\Unserializer\PHP::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Unserializer/PHP/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Unserializer/PHP/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
Whether to call magic __unserialize() methods on objects to unserialize.</li>
<li>Optional ?<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$callCustomUnserialize">$callCustomUnserialize<a class="permalink" href="ion/Unserializer/PHP/__construct#%24callCustomUnserialize">#</a></span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code><br>
Whether and which custom unserialize method to call on objects to unserialize.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Unserializer/PHP/__construct';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Unserializer::unserialize -
mdref
</title>
+ <meta property="og:title" content="ion\Unserializer::unserialize">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Unserializer/unserialize">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Unserializer/unserialize">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.string">string</a></code>|<code><a href="https://php.net/manual/en/language.types.resource">resource</a></code> <span class="var" id="$data">$data<a class="permalink" href="ion/Unserializer/unserialize#%24data">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Unserializer/unserialize';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer -
mdref
</title>
+ <meta property="og:title" content="ion\Writer">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h1><p>ION writer API.</p><h2 id="Constants:">Constants:<a class="permalink" href="ion/Writer#Constants:">#</a>
</h2><p>None.</p><h2 id="Properties:">Properties:<a class="permalink" href="ion/Writer#Properties:">#</a>
</h2><p>None.</p><h2 id="Functions:">Functions:<a class="permalink" href="ion/Writer#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Writer::appendLob">
</li>
</ul><h2 id="Namespaces.Interfaces.and.Classes:">Namespaces, Interfaces and Classes:<a class="permalink" href="ion/Writer#Namespaces.Interfaces.and.Classes:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-ns-classes">
<li>
<h3 id="Buffer">
<p><em>abstract</em> <em>class</em> <a href="ion/Writer/Writer">ion\Writer\Writer</a> <em>implements</em> <a href="ion/Writer">ion\Writer</a></p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Buffer -
mdref
</title>
+ <meta property="og:title" content="ion\Writer\Buffer">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/Buffer">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/Buffer">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h1><p>ION buffer writer API.</p><h2 id="Constants:">Constants:<a class="permalink" href="ion/Writer/Buffer#Constants:">#</a>
</h2><p>None.</p><h2 id="Properties:">Properties:<a class="permalink" href="ion/Writer/Buffer#Properties:">#</a>
</h2><p>None.</p><h2 id="Functions:">Functions:<a class="permalink" href="ion/Writer/Buffer#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Buffer::getBuffer">
</li>
</ul><h2 id="Namespaces.Interfaces.and.Classes:">Namespaces, Interfaces and Classes:<a class="permalink" href="ion/Writer/Buffer#Namespaces.Interfaces.and.Classes:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-ns-classes">
<li>
<h3 id="Writer">
<p><em>class</em> <a href="ion/Writer/Buffer/Writer">ion\Writer\Buffer\Writer</a> <em>extends</em> <a href="ion/Writer/Writer">ion\Writer\Writer</a> <em>implements</em> <a href="ion/Writer/Buffer">ion\Writer\Buffer</a></p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/Buffer';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer -
mdref
</title>
+ <meta property="og:title" content="ion\Writer\Buffer\Writer">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/Buffer/Writer">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/Buffer/Writer">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h1><p>IO buffer writer.</p><h2 id="Constants:">Constants:<a class="permalink" href="ion/Writer/Buffer/Writer#Constants:">#</a>
</h2><p>None.</p><h2 id="Properties:">Properties:<a class="permalink" href="ion/Writer/Buffer/Writer#Properties:">#</a>
</h2><p>None.</p><h2 id="Functions:">Functions:<a class="permalink" href="ion/Writer/Buffer/Writer#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Writer::__construct">
<p><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Writer/Buffer/Writer/__construct">ion\Writer\Buffer\Writer::__construct</a>([?<a href="ion/Writer/Options">ion\Writer\Options</a> <span class="var">$options</span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code>])</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/Buffer/Writer';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\Writer\Buffer\Writer::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/Buffer/Writer/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/Buffer/Writer/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>Optional ?<a href="ion/Writer/Options">ion\Writer\Options</a> <span class="var" id="$options">$options<a class="permalink" href="ion/Writer/Buffer/Writer/__construct#%24options">#</a></span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code><br>
Writer options.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/Buffer/Writer/__construct';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Buffer::getBuffer -
mdref
</title>
+ <meta property="og:title" content="ion\Writer\Buffer::getBuffer">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/Buffer/getBuffer">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/Buffer/getBuffer">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Writer/Buffer/getBuffer#">#</a><code><a href="https://php.net/manual/en/language.types.string">string</a></code> <a href="ion/Writer/Buffer/getBuffer">ion\Writer\Buffer::getBuffer</a>()</h1><p>Get the buffer written to.</p><h2 id="Params:">Params:<a class="permalink" href="ion/Writer/Buffer/getBuffer#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/Buffer/getBuffer';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Buffer::resetBuffer -
mdref
</title>
+ <meta property="og:title" content="ion\Writer\Buffer::resetBuffer">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/Buffer/resetBuffer">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/Buffer/resetBuffer">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Writer/Buffer/resetBuffer#">#</a><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Writer/Buffer/resetBuffer">ion\Writer\Buffer::resetBuffer</a>()</h1><p>Reset the buffer written to.</p><h2 id="Params:">Params:<a class="permalink" href="ion/Writer/Buffer/resetBuffer#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/Buffer/resetBuffer';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Options -
mdref
</title>
+ <meta property="og:title" content="ion\Writer\Options">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/Options">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/Options">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<em>public</em> <code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var" id="$tempBufferSize">$tempBufferSize<a class="permalink" href="ion/Writer/Options#%24tempBufferSize">#</a></span> = 16384<br>
Temporary buffer size.</li>
</ul><h2 id="Functions:">Functions:<a class="permalink" href="ion/Writer/Options#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Options::__construct">
<p><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Writer/Options/__construct">ion\Writer\Options::__construct</a>([?<a href="ion/Catalog">ion\Catalog</a> <span class="var">$catalog</span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code>, [?<a href="ion/Decimal/Context">ion\Decimal\Context</a> <span class="var">$decimalContext</span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code>, [<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var">$outputBinary</span> = <code><a href="https://php.net/manual/en/language.types.boolean">false</a></code>, [<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var">$compactFloats</span> = <code><a href="https://php.net/manual/en/language.types.boolean">false</a></code>, [<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var">$escapeNonAscii</span> = <code><a href="https://php.net/manual/en/language.types.boolean">false</a></code>, [<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var">$prettyPrint</span> = <code><a href="https://php.net/manual/en/language.types.boolean">false</a></code>, [<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var">$indentTabs</span> = <code><a href="https://php.net/manual/en/language.types.boolean">true</a></code>, [<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var">$indentSize</span> = 2, [<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var">$flushEveryValue</span> = <code><a href="https://php.net/manual/en/language.types.boolean">false</a></code>, [<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var">$maxContainerDepth</span> = 10, [<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var">$maxAnnotations</span> = 10, [<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var">$tempBufferSize</span> = 16384]]]]]]]]]]]])</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/Options';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Options::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\Writer\Options::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/Options/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/Options/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
The maximum number of annotations allowed on a single value.</li>
<li>Optional <code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var" id="$tempBufferSize">$tempBufferSize<a class="permalink" href="ion/Writer/Options/__construct#%24tempBufferSize">#</a></span> = 16384<br>
Temporary buffer size.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/Options/__construct';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Stream -
mdref
</title>
+ <meta property="og:title" content="ion\Writer\Stream">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/Stream">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/Stream">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h1><p>ION stream writer API.</p><h2 id="Constants:">Constants:<a class="permalink" href="ion/Writer/Stream#Constants:">#</a>
</h2><p>None.</p><h2 id="Properties:">Properties:<a class="permalink" href="ion/Writer/Stream#Properties:">#</a>
</h2><p>None.</p><h2 id="Functions:">Functions:<a class="permalink" href="ion/Writer/Stream#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Stream::getStream">
</li>
</ul><h2 id="Namespaces.Interfaces.and.Classes:">Namespaces, Interfaces and Classes:<a class="permalink" href="ion/Writer/Stream#Namespaces.Interfaces.and.Classes:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-ns-classes">
<li>
<h3 id="Writer">
<p><em>class</em> <a href="ion/Writer/Stream/Writer">ion\Writer\Stream\Writer</a> <em>extends</em> <a href="ion/Writer/Writer">ion\Writer\Writer</a> <em>implements</em> <a href="ion/Writer/Stream">ion\Writer\Stream</a></p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/Stream';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer -
mdref
</title>
+ <meta property="og:title" content="ion\Writer\Stream\Writer">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/Stream/Writer">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/Stream/Writer">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h1><p>ION stream writer.</p><h2 id="Constants:">Constants:<a class="permalink" href="ion/Writer/Stream/Writer#Constants:">#</a>
</h2><p>None.</p><h2 id="Properties:">Properties:<a class="permalink" href="ion/Writer/Stream/Writer#Properties:">#</a>
</h2><p>None.</p><h2 id="Functions:">Functions:<a class="permalink" href="ion/Writer/Stream/Writer#Functions:">#</a>
-</h2><ul>
+</h2><ul class="sub-entries sub-functions">
<li>
<h3 id="Writer::__construct">
<p><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Writer/Stream/Writer/__construct">ion\Writer\Stream\Writer::__construct</a>(<code><a href="https://php.net/manual/en/language.types.resource">resource</a></code> <span class="var">$stream</span>, [?<a href="ion/Writer/Options">ion\Writer\Options</a> <span class="var">$options</span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code>])</p>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/Stream/Writer';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::__construct -
mdref
</title>
+ <meta property="og:title" content="ion\Writer\Stream\Writer::__construct">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/Stream/Writer/__construct">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/Stream/Writer/__construct">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
The stream to write to.</li>
<li>Optional ?<a href="ion/Writer/Options">ion\Writer\Options</a> <span class="var" id="$options">$options<a class="permalink" href="ion/Writer/Stream/Writer/__construct#%24options">#</a></span> = <code><a href="https://php.net/manual/en/language.types.null">NULL</a></code><br>
Writer options.</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/Stream/Writer/__construct';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Stream::getStream -
mdref
</title>
+ <meta property="og:title" content="ion\Writer\Stream::getStream">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/Stream/getStream">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/Stream/getStream">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>
<code><a href="https://php.net/manual/en/language.types.resource">resource</a></code>,</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/Stream/getStream';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer -
mdref
</title>
+ <meta property="og:title" content="ion\Writer\Writer">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/Writer">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/Writer">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<a class="permalink" href="ion/Writer/Writer#">#</a><em>abstract</em> <em>class</em> <a href="ion/Writer/Writer">ion\Writer\Writer</a> <br> <em>implements</em> <a href="ion/Writer">ion\Writer</a>
</h1><p>Base implementation of common functionality of ION writers.</p><h2 id="Constants:">Constants:<a class="permalink" href="ion/Writer/Writer#Constants:">#</a>
</h2><p>None.</p><h2 id="Properties:">Properties:<a class="permalink" href="ion/Writer/Writer#Properties:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/Writer';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::appendLob -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::appendLob">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/appendLob">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/appendLob">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$data">$data<a class="permalink" href="ion/Writer/appendLob#%24data">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/appendLob';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::finish -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::finish">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/finish">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/finish">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Writer/finish#">#</a><code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <a href="ion/Writer/finish">ion\Writer::finish</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Writer/finish#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/finish';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::finishContainer -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::finishContainer">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/finishContainer">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/finishContainer">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Writer/finishContainer#">#</a><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Writer/finishContainer">ion\Writer::finishContainer</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Writer/finishContainer#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/finishContainer';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::finishLob -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::finishLob">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/finishLob">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/finishLob">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Writer/finishLob#">#</a><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Writer/finishLob">ion\Writer::finishLob</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Writer/finishLob#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/finishLob';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::flush -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::flush">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/flush">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/flush">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Writer/flush#">#</a><code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <a href="ion/Writer/flush">ion\Writer::flush</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Writer/flush#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/flush';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::getDepth -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::getDepth">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/getDepth">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/getDepth">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Writer/getDepth#">#</a><code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <a href="ion/Writer/getDepth">ion\Writer::getDepth</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Writer/getDepth#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/getDepth';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::startContainer -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::startContainer">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/startContainer">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/startContainer">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<a href="ion/Type">ion\Type</a> <span class="var" id="$type">$type<a class="permalink" href="ion/Writer/startContainer#%24type">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/startContainer';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::startLob -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::startLob">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/startLob">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/startLob">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<a href="ion/Type">ion\Type</a> <span class="var" id="$type">$type<a class="permalink" href="ion/Writer/startLob#%24type">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/startLob';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::writeAnnotation -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::writeAnnotation">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/writeAnnotation">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/writeAnnotation">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</h2><ul>
<li>Optional <a href="ion/Symbol">ion\Symbol</a>|<code><a href="https://php.net/manual/en/language.types.string">string</a></code> ?>...<span class="var" id="$annotation">$annotation<a class="permalink" href="ion/Writer/writeAnnotation#%24annotation">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/writeAnnotation';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::writeBLob -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::writeBLob">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/writeBLob">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/writeBLob">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$value">$value<a class="permalink" href="ion/Writer/writeBLob#%24value">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/writeBLob';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::writeBool -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::writeBool">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/writeBool">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/writeBool">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.boolean">bool</a></code> <span class="var" id="$value">$value<a class="permalink" href="ion/Writer/writeBool#%24value">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/writeBool';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::writeCLob -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::writeCLob">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/writeCLob">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/writeCLob">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$value">$value<a class="permalink" href="ion/Writer/writeCLob#%24value">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/writeCLob';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::writeDecimal -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::writeDecimal">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/writeDecimal">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/writeDecimal">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<a href="ion/Decimal">ion\Decimal</a>|<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$value">$value<a class="permalink" href="ion/Writer/writeDecimal#%24value">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/writeDecimal';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::writeFieldName -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::writeFieldName">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/writeFieldName">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/writeFieldName">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$name">$name<a class="permalink" href="ion/Writer/writeFieldName#%24name">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/writeFieldName';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::writeFloat -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::writeFloat">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/writeFloat">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/writeFloat">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.float">float</a></code> <span class="var" id="$value">$value<a class="permalink" href="ion/Writer/writeFloat#%24value">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/writeFloat';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::writeInt -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::writeInt">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/writeInt">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/writeInt">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.string">string</a></code>|<code><a href="https://php.net/manual/en/language.types.integer">int</a></code> <span class="var" id="$value">$value<a class="permalink" href="ion/Writer/writeInt#%24value">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/writeInt';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::writeNull -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::writeNull">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/writeNull">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/writeNull">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</div>
<meta charset="utf-8"><h1>
<a class="permalink" href="ion/Writer/writeNull#">#</a><code><a href="https://php.net/manual/en/language.types.declarations#language.types.declarations.void">void</a></code> <a href="ion/Writer/writeNull">ion\Writer::writeNull</a>()</h1><h2 id="Params:">Params:<a class="permalink" href="ion/Writer/writeNull#Params:">#</a>
-</h2><p>None.</p>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/writeNull';
- </script>
-
+</h2><p>None.</p>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::writeString -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::writeString">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/writeString">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/writeString">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$value">$value<a class="permalink" href="ion/Writer/writeString#%24value">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/writeString';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::writeSymbol -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::writeSymbol">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/writeSymbol">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/writeSymbol">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<a href="ion/Symbol">ion\Symbol</a>|<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$value">$value<a class="permalink" href="ion/Writer/writeSymbol#%24value">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/writeSymbol';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::writeTimestamp -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::writeTimestamp">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/writeTimestamp">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/writeTimestamp">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<a href="ion/Timestamp">ion\Timestamp</a>|<code><a href="https://php.net/manual/en/language.types.string">string</a></code> <span class="var" id="$value">$value<a class="permalink" href="ion/Writer/writeTimestamp#%24value">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/writeTimestamp';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
Writer::writeTypedNull -
mdref
</title>
+ <meta property="og:title" content="ion\Writer::writeTypedNull">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/Writer/writeTypedNull">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/Writer/writeTypedNull">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
<li>
<a href="ion/Type">ion\Type</a> <span class="var" id="$type">$type<a class="permalink" href="ion/Writer/writeTypedNull#%24type">#</a></span>
</li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/Writer/writeTypedNull';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
serialize -
mdref
</title>
+ <meta property="og:title" content="ion::serialize">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/serialize">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/serialize">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</ul><h2 id="Throws:">Throws:<a class="permalink" href="ion/serialize#Throws:">#</a>
</h2><ul>
<li><a href="ion/Exception">\ion\Exception</a></li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/serialize';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>
unserialize -
mdref
</title>
+ <meta property="og:title" content="ion::unserialize">
<meta name="viewport" content="width=1200, initial-scale=0.5">
<base href="/ext-ion/v0.1/">
<meta http-equiv="Content-Location" content="/ext-ion/v0.1/ion/unserialize">
<link rel="stylesheet" href="index.css">
- <link href="https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext" rel="stylesheet">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="shortcut icon" href="/ext-ion/v0.1/favicon.ico">
</head>
<body>
<div class="sidebar">
<div class="edit">
- <a href="./ion/unserialize">Edit</a>
+ <a href="https://github.com/awesomized/ext-ion/edit/master/ion.stub.php">Edit</a>
</div>
</ul><h2 id="Throws:">Throws:<a class="permalink" href="ion/unserialize#Throws:">#</a>
</h2><ul>
<li><a href="ion/Exception">\ion\Exception</a></li>
-</ul>
- <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
- <script>
- var disqus_shortname = 'mdref';
- var disqus_identifier = 'ion/unserialize';
- </script>
-
+</ul>
+ <div class="comments">
+ <style>.giscus-frame {min-height: 16em;}</style>
+ <script>
+ function giscus_load(button) {
+ let script = document.createElement("script");
+ script.setAttribute("data-repo", 'awesomized/ext-ion');
+ script.setAttribute("data-category", 'Comments on Docs');
+ script.setAttribute("data-repo-id", 'R_kgDOGfXEXw');
+ script.setAttribute("data-category-id", 'DIC_kwDOGfXEX84CBHuf');
+ script.setAttribute("data-mapping", 'og:title');
+ script.setAttribute("data-input-position", 'bottom');
+ script.setAttribute("data-reactions-enabled", false);
+ script.setAttribute("data-theme", 'light');
+ script.setAttribute("data-lang", 'en');
+
+ script.src = "//giscus.app/client.js";
+ button.parentNode.replaceChild(script, button);
+ }
+ </script>
+ <button class="activator" onclick="giscus_load(this)">Show Comments from Github Discussions</button>
+
+ </div>
+
<footer>
<ul>
</footer>
- <script src="index.js"></script>
+ <script src="index.js" defer></script>
</div>
</body>