Redian新闻
>
scala 问题请教 -- scala.runtime.Tuple2Zipped
avatar
scala 问题请教 -- scala.runtime.Tuple2Zipped# Programming - 葵花宝典
k*u
1
一说萝卜大家都想到的是笨笨大个头,其实萝卜家族里也有很妖娆妩媚的小成员哦~ 哈
哈哈~~~
樱桃小萝卜果如其名,长得像樱桃一样小巧可爱以及红得发紫~ 汁水比大白萝卜要多,
味道也没有那么辣口,是做凉菜的好食材~ 既好吃又要好看,这就是所谓食色。。。好
咦呃啊~~~哈哈哈
材料:
樱桃小萝卜、蒜、盐、糖、白醋
做法:
1、樱桃小萝卜洗净沥干,切蓑衣花刀,
(即切薄片但不切断,然后翻过来再前后调个头,同样刀法45°角斜切,这样切出来的
小萝卜可以像手风琴一样拉很长,很可爱,哈哈。如图可用筷子卡住以防切断)
2、用少许盐抓匀,使水份析出一部分,in order to 更脆and进味~ 半小时后把析出
的水倒掉再用清水冲净。
3、加入白醋、白糖、盐、蒜末拌匀即可。或者放在冰箱第二天再吃会更爽口~
avatar
a*h
2
5月初收到的,NSC,没有pp,想问各位的进度如何?等的有点急。。。谢谢了~
avatar
s*e
3
工作一年零两个月, match的部分没有vest, 打电话去问,说拿不到,不能rollover。
要四年才行,太黑了
avatar
b*i
4
n久以前好像奔过
俺们再奔一个
去年的和今年的照片哈
avatar
o*l
5
scala> val a= (List(10, 20), List(3, 4, 5)).zipped
a: scala.runtime.Tuple2Zipped[Int,List[Int],Int,List[Int]] = scala.runtime.
[email protected]
拿位大侠能帮忙解释以下scala.runtime.Tuple2Zipped?
[Int,List[Int],Int,List[Int]] 到底是什么东东?
谢谢!
avatar
s*i
6
赞,切得很漂亮
avatar
z*g
7
再等一个月差不多了
avatar
b*u
8
很多公司都这样,两三年后vest居多。

工作一年零两个月, match的部分没有vest, 打电话去问,说拿不到,不能rollover。
要四年才行,太黑了

【在 s****e 的大作中提到】
: 工作一年零两个月, match的部分没有vest, 打电话去问,说拿不到,不能rollover。
: 要四年才行,太黑了

avatar
b*i
9
还有俺们肥硕的背影和超人照~~

【在 b*******i 的大作中提到】
: n久以前好像奔过
: 俺们再奔一个
: 去年的和今年的照片哈

avatar
l*n
10
那个是type parameter
avatar
F*t
11
wow,漂亮啊
avatar
k*i
12
一般2-3年才给。认了算了。
avatar
d*e
13
tuple of 2 element zipped.
特定数据结构提高效率的。

【在 o*****l 的大作中提到】
: scala> val a= (List(10, 20), List(3, 4, 5)).zipped
: a: scala.runtime.Tuple2Zipped[Int,List[Int],Int,List[Int]] = scala.runtime.
: [email protected]
: 拿位大侠能帮忙解释以下scala.runtime.Tuple2Zipped?
: [Int,List[Int],Int,List[Int]] 到底是什么东东?
: 谢谢!

avatar
c*u
14
可爱!

【在 k******u 的大作中提到】
: 一说萝卜大家都想到的是笨笨大个头,其实萝卜家族里也有很妖娆妩媚的小成员哦~ 哈
: 哈哈~~~
: 樱桃小萝卜果如其名,长得像樱桃一样小巧可爱以及红得发紫~ 汁水比大白萝卜要多,
: 味道也没有那么辣口,是做凉菜的好食材~ 既好吃又要好看,这就是所谓食色。。。好
: 咦呃啊~~~哈哈哈
: 材料:
: 樱桃小萝卜、蒜、盐、糖、白醋
: 做法:
: 1、樱桃小萝卜洗净沥干,切蓑衣花刀,
: (即切薄片但不切断,然后翻过来再前后调个头,同样刀法45°角斜切,这样切出来的

avatar
b*e
15
401k要vest干吗?你的是rsu吧

【在 s****e 的大作中提到】
: 工作一年零两个月, match的部分没有vest, 打电话去问,说拿不到,不能rollover。
: 要四年才行,太黑了

avatar
o*l
16
那个是 type parameter为什么是 [Int,List[Int],Int,List[Int]]?
从后面那个map涵数来看, type parameter 似乎是[List(int, int)]?
scala> val a= (List(10, 20), List(3, 4, 5)).zipped
a: scala.runtime.Tuple2Zipped[Int,List[Int],Int,List[Int]] = scala.runtime.
[email protected]
scala> a.map({case (a,b) => println(a*b)})
30
80
res0: List[Unit] = List((), ())

【在 d******e 的大作中提到】
: tuple of 2 element zipped.
: 特定数据结构提高效率的。

avatar
E*A
17
果然很妩媚
avatar
f*n
18
很多时候401k的match要vest的。

【在 b*****e 的大作中提到】
: 401k要vest干吗?你的是rsu吧
avatar
d*e
19
http://www.scala-lang.org/api/2.11.x/index.html#scala.runtime.T
你可以看到它是一个ZippedTraversable2[El1, El2]
所以你map的时候另外2个就没有用到啦。
scala的list不是linked list,而去它很可能就存了两个cursors + 到原来list的指针。
你zip的时候它可能就是不断的
tail, head,
tail, head

【在 o*****l 的大作中提到】
: 那个是 type parameter为什么是 [Int,List[Int],Int,List[Int]]?
: 从后面那个map涵数来看, type parameter 似乎是[List(int, int)]?
: scala> val a= (List(10, 20), List(3, 4, 5)).zipped
: a: scala.runtime.Tuple2Zipped[Int,List[Int],Int,List[Int]] = scala.runtime.
: [email protected]
: scala> a.map({case (a,b) => println(a*b)})
: 30
: 80
: res0: List[Unit] = List((), ())

avatar
b*x
20
我也特爱吃这个~
我直接用的寿司醋泡
avatar
r*9
21
辞职之前没有问清楚? 这些都是辞职的cost, 很多时候都要问下家给点bonus来补偿的。

【在 s****e 的大作中提到】
: 工作一年零两个月, match的部分没有vest, 打电话去问,说拿不到,不能rollover。
: 要四年才行,太黑了

avatar
l*2
22
mm的食物总是色香味俱全呀。
而且还是新浪美食大厨,实在是太了不起了
avatar
s*e
23
工作一年零两个月, match的部分没有vest, 打电话去问,说拿不到,不能rollover。
要四年才行,太黑了
avatar
l*s
24
美食
美照
美人
avatar
b*u
25
很多公司都这样,两三年后vest居多。

工作一年零两个月, match的部分没有vest, 打电话去问,说拿不到,不能rollover。
要四年才行,太黑了

【在 s****e 的大作中提到】
: 工作一年零两个月, match的部分没有vest, 打电话去问,说拿不到,不能rollover。
: 要四年才行,太黑了

avatar
l*3
26
好看啊
avatar
k*i
27
一般2-3年才给。认了算了。
avatar
k*u
28
不是大厨啦。。。就是自己做着玩,拍着玩,写着玩,发着玩~一切都是为了玩~~~哈哈哈

【在 l*******2 的大作中提到】
: mm的食物总是色香味俱全呀。
: 而且还是新浪美食大厨,实在是太了不起了

avatar
b*e
29
401k要vest干吗?你的是rsu吧

【在 s****e 的大作中提到】
: 工作一年零两个月, match的部分没有vest, 打电话去问,说拿不到,不能rollover。
: 要四年才行,太黑了

avatar
d*g
30
嫩这萝卜太妖娆啦~~~~~刀工很赞哇~~~~~
avatar
f*n
31
很多时候401k的match要vest的。

【在 b*****e 的大作中提到】
: 401k要vest干吗?你的是rsu吧
avatar
R*s
32
大厨随便切个萝卜都这么美。。。不服不行。。

哈哈

【在 k******u 的大作中提到】
: 不是大厨啦。。。就是自己做着玩,拍着玩,写着玩,发着玩~一切都是为了玩~~~哈哈哈
avatar
r*9
33
辞职之前没有问清楚? 这些都是辞职的cost, 很多时候都要问下家给点bonus来补偿的。

【在 s****e 的大作中提到】
: 工作一年零两个月, match的部分没有vest, 打电话去问,说拿不到,不能rollover。
: 要四年才行,太黑了

avatar
s*k
34
姐姐
咱俩看得博客应该都差不多。。。
哈哈哈~~~我每天最开心的事儿就是看美食blog
看着各种大牛拍的绝对不亚于专业的美食照片流口水。。。
前两天一直想做这个
一直没去超市
结果今天就发现姐姐你做了。。。
羡慕嫉妒恨。。。
那俺就不能发了。。。。5555555
嘿嘿
肯定味道很好~!
btw~另外一种从小吃到大的方法
直接洗干净沾甜面酱吃
这是我们那里或者北方的吃法 呵呵

【在 k******u 的大作中提到】
: 一说萝卜大家都想到的是笨笨大个头,其实萝卜家族里也有很妖娆妩媚的小成员哦~ 哈
: 哈哈~~~
: 樱桃小萝卜果如其名,长得像樱桃一样小巧可爱以及红得发紫~ 汁水比大白萝卜要多,
: 味道也没有那么辣口,是做凉菜的好食材~ 既好吃又要好看,这就是所谓食色。。。好
: 咦呃啊~~~哈哈哈
: 材料:
: 樱桃小萝卜、蒜、盐、糖、白醋
: 做法:
: 1、樱桃小萝卜洗净沥干,切蓑衣花刀,
: (即切薄片但不切断,然后翻过来再前后调个头,同样刀法45°角斜切,这样切出来的

avatar
b*r
35
职场新人询问:
什么是vest?
avatar
l*t
36
切得好漂亮
avatar
b*u
37
What does vesting mean?
The "vested" portion of your 401(k) account is the part that belongs to you
and cannot be forfeited if you leave your job.
There are two types of 401(k) contributions: the contributions you make and
the contributions your employer makes (such as a matching or profit-sharing
contribution). The money you contribute, adjusted for any investment gain or
loss, is always 100 percent vested. That means this money is always 100
percent yours.
The contribution your employer makes, on the other hand, may be subject to a
vesting requirement. This means that you must earn your employer's
contribution over time. In 2002, the maximum vesting period was reduced as a
result of the 2001 tax law.
Vesting requirements are very common in 401(k) plans. The two types of
vesting schedules are graded vesting and cliff vesting.
With graded vesting you own an increasing portion of the employer
contribution each year you are with your company. If your company had a five
-year graded vesting schedule, you might be 20 percent vested after one year
, 40 percent vested after two years, etc. By law, the longest graded vesting
schedule a 401(k) plan can have is six years (down from seven years in 2001
). Employees must be at least 20 percent vested after two years of service
and an additional 20 percent for each subsequent year until in year six, the
account is 100 percent vested.
With cliff vesting the employer contribution becomes 100 percent vested
after a set period of time. So if your vesting requirement is three years
and you leave your company after two years, you won?t get any of the
employer contributions. Currently, the longest cliff-vesting schedule
allowed by law is three years (down from five years in 2001).
The reason companies include a vesting requirement in their 401(k) plan is
that it provides an incentive for employees to stick with the company.
Say, for example, your company's 401(k) plan has a four-year graded vesting
schedule, with 25 percent of the employer match vesting each year. The
employer match is 50 cents on the dollar. After two years, when you are 50
percent vested, you decide to leave your job.
Your 401(k) account balance consists of:
Your contributions (adjusted for investment gain or loss) = $7,000
Employer contributions (adjusted for investment gain or loss) = $3,500
Your total account balance is $10,500. But your vested account balance is
only $8,750 ($7,000 plus 50 percent of $3,500). So by leaving your job after
only two years, you've essentially "lost" $1,750.
One last tip: if you are planning to leave your job, make sure you find out
when the employer matching contributions are deposited into the account.
Some employers deposit matching contributions every pay period, but others
only make the deposits once a year. In such a case, if you were to leave
your job before the contribution for the most recent year were deposited,
you could lose a whole year's worth of matching contributions.

【在 b***r 的大作中提到】
: 职场新人询问:
: 什么是vest?

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。