Swift: QLDoc VariadicSequenceType.

This commit is contained in:
Geoffrey White
2023-08-15 18:21:37 +01:00
parent 8f2e2a6155
commit 6a54a8bc62

View File

@@ -1,4 +1,12 @@
// generated by codegen/codegen.py, remove this comment if you wish to edit this file
private import codeql.swift.generated.type.VariadicSequenceType
/**
* A variadic sequence type, that is, an array-like type that holds
* variadic arguments. For example the type `Int...` of `args` in:
* ```
* func myVarargsFunction(args: Int...) {
* ...
* }
* ```
*/
class VariadicSequenceType extends Generated::VariadicSequenceType { }