CodeGeneration
Swift
translate Maple code to Swift code
Calling Sequence
Parameters
Description
Examples
Compatibility
Swift(x, cgopts)
x
-
expression, list, rtable, procedure, or module
cgopts
(optional) one or more CodeGeneration options
The Swift(x, cgopts) calling sequence translates Maple code to Swift code.
- If the parameter x is an algebraic expression, then a Swift statement assigning the expression to a variable is generated.
- If x is a list of equations nm=expr, where nm is a name and expr is an algebraic expression, then this is understood as a sequence of assignment statements. In this case, the equivalent sequence of Swift assignment statements is generated.
- If x is a procedure, then a Swift function is generated which is equivalent to the procedure, along with any necessary import statements.
The parameter cgopts may include one or more CodeGeneration options, as described in CodeGenerationOptions.
For more information about how the CodeGeneration package translates Maple code to other languages, see Translation Details. For more information about translation to Swift in particular, see Swift Details.
For a description of the options used in the following examples, see CodeGenerationOptions.
with⁡CodeGeneration:
Translate a simple expression and assign it to the name w in the target code.
Swift⁡x+y⁢z−2⁢x⁢z,resultname=w
w = -2 * x * z + y * z + x
Translate a list and assign it to an array with the name w in the target code.
Swift⁡x,2⁢y,5,z,resultname=w
w[0][0] = x w[0][1] = 2 * y w[1][0] = 5 w[1][1] = z
Translate a computation sequence. Optimize the input first.
cs≔s=1.0+x,t=ln⁡s⁢exp⁡−x,r=exp⁡−x+x⁢t:
Swift⁡cs,optimize
s = 0.10e1 + x t1 = log(s) t2 = exp(-x) t = t2 * t1 r = x * t + t2
Declare that x is a float and y is an integer. Return the result in a string.
s≔Swift⁡x+y+1,declare=x::float,y::integer,output=string
s≔cg = x + y + 0.1e1
Translate a procedure. Assume that all untyped variables have type integer.
f := proc(x, y, z) return x*y-y*z+x*z; end proc:
Swift⁡f,defaulttype=integer
func f (x: Int32, y: Int32, z: Int32) -> Int32 { return(y * x - y * z + x * z); }
Translate a procedure containing an implicit return. A new variable is created to hold the return value.
f := proc(n) local x, i; x := 0.0; for i to n do x := x + i; end do; end proc:
Swift⁡f
func f (n: Int32) -> Double { var x: Double var i: Int32 var cgret: Double x = 0.0e0 for i in 1...n { x = x + i cgret = x } return(cgret); }
The CodeGeneration[Swift] command was introduced in Maple 2017.
For more information on Maple 2017 changes, see Updates in Maple 2017.
See Also
CodeGenerationOptions
SwiftDetails
TranslationDetails
Download Help Document