Skip to content

Add structures to functions in ru #2650

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Nov 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _overviews/scala3-book/control-structures.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Control Structures
type: chapter
description: This page provides an introduction to Scala's control structures, including if/then/else, 'for' loops, 'for' expressions, 'match' expressions, try/catch/finally, and 'while' loops.
languages: [zh-cn]
languages: [ru, zh-cn]
num: 18
previous-page: first-look-at-types
next-page: domain-modeling-intro
Expand Down
2 changes: 1 addition & 1 deletion _overviews/scala3-book/domain-modeling-fp.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: FP Modeling
type: section
description: This chapter provides an introduction to FP domain modeling with Scala 3.
languages: [zh-cn]
languages: [ru, zh-cn]
num: 22
previous-page: domain-modeling-oop
next-page: methods-intro
Expand Down
2 changes: 1 addition & 1 deletion _overviews/scala3-book/domain-modeling-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Domain Modeling
type: chapter
description: This chapter provides an introduction to domain modeling in Scala 3.
languages: [zh-cn]
languages: [ru, zh-cn]
num: 19
previous-page: control-structures
next-page: domain-modeling-tools
Expand Down
2 changes: 1 addition & 1 deletion _overviews/scala3-book/domain-modeling-oop.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: OOP Modeling
type: section
description: This chapter provides an introduction to OOP domain modeling with Scala 3.
languages: [zh-cn]
languages: [ru, zh-cn]
num: 21
previous-page: domain-modeling-tools
next-page: domain-modeling-fp
Expand Down
2 changes: 1 addition & 1 deletion _overviews/scala3-book/domain-modeling-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Tools
type: section
description: This chapter provides an introduction to the available domain modeling tools in Scala 3, including classes, traits, enums, and more.
languages: [zh-cn]
languages: [ru, zh-cn]
num: 20
previous-page: domain-modeling-intro
next-page: domain-modeling-oop
Expand Down
2 changes: 1 addition & 1 deletion _overviews/scala3-book/fun-anonymous-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Anonymous Functions
type: section
description: This page shows how to use anonymous functions in Scala, including examples with the List class 'map' and 'filter' functions.
languages: [zh-cn]
languages: [ru, zh-cn]
num: 28
previous-page: fun-intro
next-page: fun-function-variables
Expand Down
2 changes: 1 addition & 1 deletion _overviews/scala3-book/fun-eta-expansion.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Eta Expansion
type: section
description: This page discusses Eta Expansion, the Scala technology that automatically and transparently converts methods into functions.
languages: [zh-cn]
languages: [ru, zh-cn]
num: 30
previous-page: fun-function-variables
next-page: fun-hofs
Expand Down
4 changes: 2 additions & 2 deletions _overviews/scala3-book/fun-function-variables.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Function Variables
type: section
description: This page shows how to use anonymous functions in Scala, including examples with the List class 'map' and 'filter' functions.
languages: [zh-cn]
description: This page shows how to use function variables in Scala.
languages: [ru, zh-cn]
num: 29
previous-page: fun-anonymous-functions
next-page: fun-eta-expansion
Expand Down
2 changes: 1 addition & 1 deletion _overviews/scala3-book/fun-hofs.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Higher-Order Functions
type: section
description: This page demonstrates how to create and use higher-order functions in Scala.
languages: [zh-cn]
languages: [ru, zh-cn]
num: 31
previous-page: fun-eta-expansion
next-page: fun-write-map-function
Expand Down
2 changes: 1 addition & 1 deletion _overviews/scala3-book/fun-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Functions
type: chapter
description: This chapter looks at all topics related to functions in Scala 3.
languages: [zh-cn]
languages: [ru, zh-cn]
num: 27
previous-page: methods-summary
next-page: fun-anonymous-functions
Expand Down
4 changes: 2 additions & 2 deletions _overviews/scala3-book/fun-summary.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Summary
type: section
description: This page shows how to use anonymous functions in Scala, including examples with the List class 'map' and 'filter' functions.
languages: [zh-cn]
description: This page provides a summary of the previous 'Functions' sections.
languages: [ru, zh-cn]
num: 34
previous-page: fun-write-method-returns-function
next-page: packaging-imports
Expand Down
2 changes: 1 addition & 1 deletion _overviews/scala3-book/fun-write-map-function.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Write Your Own map Method
type: section
description: This page demonstrates how to create and use higher-order functions in Scala.
languages: [zh-cn]
languages: [ru, zh-cn]
num: 32
previous-page: fun-hofs
next-page: fun-write-method-returns-function
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Creating a Method That Returns a Function
type: section
description: This page demonstrates how to create and use higher-order functions in Scala.
languages: [zh-cn]
languages: [ru, zh-cn]
num: 33
previous-page: fun-write-map-function
next-page: fun-summary
Expand Down
2 changes: 1 addition & 1 deletion _overviews/scala3-book/methods-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Methods
type: chapter
description: This section introduces methods in Scala 3.
languages: [zh-cn]
languages: [ru, zh-cn]
num: 23
previous-page: domain-modeling-fp
next-page: methods-most
Expand Down
2 changes: 1 addition & 1 deletion _overviews/scala3-book/methods-main-methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Main Methods in Scala 3
type: section
description: This page describes how 'main' methods and the '@main' annotation work in Scala 3.
languages: [zh-cn]
languages: [ru, zh-cn]
num: 25
previous-page: methods-most
next-page: methods-summary
Expand Down
2 changes: 1 addition & 1 deletion _overviews/scala3-book/methods-most.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Method Features
type: section
description: This section introduces Scala 3 methods, including main methods, extension methods, and more.
languages: [zh-cn]
languages: [ru, zh-cn]
num: 24
previous-page: methods-intro
next-page: methods-main-methods
Expand Down
2 changes: 1 addition & 1 deletion _overviews/scala3-book/methods-summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Summary
type: section
description: This section summarizes the previous sections on Scala 3 methods.
languages: [zh-cn]
languages: [ru, zh-cn]
num: 26
previous-page: methods-main-methods
next-page: fun-intro
Expand Down
Loading