- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
block of private declarations ...
Fri, 2011-12-16, 14:28
Is there some way to mark a whole block of declarations as being
private. For example:
private {
val x =
val y = ..
val z = ..
def f = ..
}
instead of:
private val x =
private val y =
private val z =
private def f =
Or any shorthand to avoid having to type and read all the private
declarations.
Fri, 2011-12-16, 14:51
#2
Re: block of private declarations ...
Well, you could always put them inside a "private object". It's not
the same thing, but it might be close enough.
On Fri, Dec 16, 2011 at 11:28, G J wrote:
> Is there some way to mark a whole block of declarations as being
> private. For example:
>
> private {
> val x =
> val y = ..
> val z = ..
>
> def f = ..
> }
>
> instead of:
>
> private val x =
> private val y =
> private val z =
>
> private def f =
>
> Or any shorthand to avoid having to type and read all the private
> declarations.
Just an opinion - in bigger files this becomes unreadable (e.g. in ruby)
On Dec 16, 2011, at 2:28 PM, G J wrote:
> Is there some way to mark a whole block of declarations as being
> private. For example:
>
> private {
> val x =
> val y = ..
> val z = ..
>
> def f = ..
> }
>
> instead of:
>
> private val x =
> private val y =
> private val z =
>
> private def f =
>
> Or any shorthand to avoid having to type and read all the private
> declarations.