You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ha...@apache.org on 2021/12/19 12:49:29 UTC

[royale-docs] 01/02: Added vector and XML stubs

This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-docs.git

commit 6c33292e403fd21c98a70835d509064254a1e5dd
Author: Harbs <ha...@in-tools.com>
AuthorDate: Sun Dec 19 14:45:26 2021 +0200

    Added vector and XML stubs
---
 _data/toc.json          |  6 ++++++
 features/as3/vectors.md | 35 +++++++++++++++++++++++++++++++++++
 features/as3/xml.md     | 37 +++++++++++++++++++++++++++++++++++++
 3 files changed, 78 insertions(+)

diff --git a/_data/toc.json b/_data/toc.json
index 64fdfd2..f9093a1 100644
--- a/_data/toc.json
+++ b/_data/toc.json
@@ -62,6 +62,12 @@
                             "path": "features/as3/interfaces.md"
                         },
                         {
+                            "path": "features/as3/vectors.md"
+                        },
+                        {
+                            "path": "features/as3/xml.md"
+                        },
+                        {
                             "path": "features/as3/code-conventions.md"
                         },
                         {
diff --git a/features/as3/vectors.md b/features/as3/vectors.md
new file mode 100644
index 0000000..2f46b27
--- /dev/null
+++ b/features/as3/vectors.md
@@ -0,0 +1,35 @@
+---
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+# 
+# http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+layout: docpage
+title: Vectors
+description: Vectors in ActionScript 3
+permalink: /features/as3/vectors
+---
+
+# Vectors
+
+Vectors in ActionScript 3
+
+## Vectors and Arrays
+Why use vectors. Differences between vectors and arrays...
+
+## Converting between vectors and arrays
+Some info about this...
+
+## AS3 Vectors vs. Typescript array types
+Differences between the two
+
diff --git a/features/as3/xml.md b/features/as3/xml.md
new file mode 100644
index 0000000..ecd2211
--- /dev/null
+++ b/features/as3/xml.md
@@ -0,0 +1,37 @@
+---
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+# 
+# http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+layout: docpage
+title: XML
+description: XML in ActionScript 3
+permalink: /features/as3/xml
+---
+
+# XML
+
+XML in ActionScript 3
+
+## XML: a first class citizen
+ActionScript has support for XML as a native type.
+
+## E4X
+Some info about E4X...
+
+## Limitations
+About inferring XML types...
+
+## Optimization
+Details about performance considerations when using XML...
\ No newline at end of file