Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
NeVeSpl committed Mar 6, 2024
1 parent a645ed1 commit f43e26d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Documentation/BuiltInFunctions.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ DebugFunctions
* [Throw](#Throw)
* [WriteLine](#WriteLine)

LINQFunctions

* [Where](#Where)

ParametersFunctions

* [ToTypeScript](#ToTypeScript)
Expand Down Expand Up @@ -253,6 +257,18 @@ Write text on NTypewriter output window

----

## LINQFunctions

#### Where

```csharp
IEnumerable<object> LINQ.Where(MainTemplateContext context, IEnumerable<object> source, string predicate)
```
Filters a sequence of values based on a predicate. Predicate uses C# lambda syntax, the same one that is used by LINQ Where method
[[source code](/NTypewriter/Internals/Functions/LINQFunctions.cs#L16)]

----

## ParametersFunctions

#### ToTypeScript
Expand Down
1 change: 1 addition & 0 deletions Documentation/CodeModel.md
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,7 @@ IsVirtual | Determines if the symbol is virtual | `bool`
Locations | Gets the locations where the symbol was originally defined, either in source or metadata. Some symbols (for example, partial classes) may be defined in more than one location. | [`IEnumerable<ILocation>`](#ILocation)
Name | The name of the symbol | `string`
Namespace | The nearest enclosing namespace for the symbol. | `string`
SourceCode | | `string`


Implements :
Expand Down

0 comments on commit f43e26d

Please sign in to comment.