Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
c1b159d4
提交
c1b159d4
authored
11月 07, 2014
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation
上级
69ea2e49
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
40 行增加
和
9 行删除
+40
-9
ImmutableArray3.java
h2/src/tools/org/h2/dev/util/ImmutableArray3.java
+40
-9
没有找到文件。
h2/src/tools/org/h2/dev/util/ImmutableArray3.java
浏览文件 @
c1b159d4
...
@@ -103,6 +103,11 @@ public abstract class ImmutableArray3<K> implements Iterable<K> {
...
@@ -103,6 +103,11 @@ public abstract class ImmutableArray3<K> implements Iterable<K> {
return
array
;
return
array
;
}
}
/**
* Get the level of "abstraction".
*
* @return the level
*/
abstract
int
level
();
abstract
int
level
();
@Override
@Override
...
@@ -166,7 +171,7 @@ public abstract class ImmutableArray3<K> implements Iterable<K> {
...
@@ -166,7 +171,7 @@ public abstract class ImmutableArray3<K> implements Iterable<K> {
/**
/**
* The array.
* The array.
*/
*/
final
K
[]
array
;
private
final
K
[]
array
;
public
Plain
(
K
[]
array
)
{
public
Plain
(
K
[]
array
)
{
this
.
array
=
array
;
this
.
array
=
array
;
...
@@ -197,6 +202,15 @@ public abstract class ImmutableArray3<K> implements Iterable<K> {
...
@@ -197,6 +202,15 @@ public abstract class ImmutableArray3<K> implements Iterable<K> {
return
new
Remove
<
K
>(
this
,
index
);
return
new
Remove
<
K
>(
this
,
index
);
}
}
/**
* Get a plain array with the given entry updated.
*
* @param <K> the type
* @param base the base type
* @param index the index
* @param obj the object
* @return the immutable array
*/
static
<
K
>
ImmutableArray3
<
K
>
set
(
ImmutableArray3
<
K
>
base
,
int
index
,
K
obj
)
{
static
<
K
>
ImmutableArray3
<
K
>
set
(
ImmutableArray3
<
K
>
base
,
int
index
,
K
obj
)
{
int
len
=
base
.
length
();
int
len
=
base
.
length
();
@SuppressWarnings
(
"unchecked"
)
@SuppressWarnings
(
"unchecked"
)
...
@@ -207,6 +221,15 @@ public abstract class ImmutableArray3<K> implements Iterable<K> {
...
@@ -207,6 +221,15 @@ public abstract class ImmutableArray3<K> implements Iterable<K> {
return
new
Plain
<
K
>(
array
);
return
new
Plain
<
K
>(
array
);
}
}
/**
* Get a plain array with the given entry inserted.
*
* @param <K> the type
* @param base the base type
* @param index the index
* @param obj the object
* @return the immutable array
*/
static
<
K
>
ImmutableArray3
<
K
>
insert
(
ImmutableArray3
<
K
>
base
,
int
index
,
K
obj
)
{
static
<
K
>
ImmutableArray3
<
K
>
insert
(
ImmutableArray3
<
K
>
base
,
int
index
,
K
obj
)
{
int
len
=
base
.
length
()
+
1
;
int
len
=
base
.
length
()
+
1
;
@SuppressWarnings
(
"unchecked"
)
@SuppressWarnings
(
"unchecked"
)
...
@@ -217,6 +240,14 @@ public abstract class ImmutableArray3<K> implements Iterable<K> {
...
@@ -217,6 +240,14 @@ public abstract class ImmutableArray3<K> implements Iterable<K> {
return
new
Plain
<
K
>(
array
);
return
new
Plain
<
K
>(
array
);
}
}
/**
* Get a plain array with the given entry removed.
*
* @param <K> the type
* @param base the base type
* @param index the index
* @return the immutable array
*/
static
<
K
>
ImmutableArray3
<
K
>
remove
(
ImmutableArray3
<
K
>
base
,
int
index
)
{
static
<
K
>
ImmutableArray3
<
K
>
remove
(
ImmutableArray3
<
K
>
base
,
int
index
)
{
int
len
=
base
.
length
()
-
1
;
int
len
=
base
.
length
()
-
1
;
@SuppressWarnings
(
"unchecked"
)
@SuppressWarnings
(
"unchecked"
)
...
@@ -242,9 +273,9 @@ public abstract class ImmutableArray3<K> implements Iterable<K> {
...
@@ -242,9 +273,9 @@ public abstract class ImmutableArray3<K> implements Iterable<K> {
*/
*/
static
class
Set
<
K
>
extends
ImmutableArray3
<
K
>
{
static
class
Set
<
K
>
extends
ImmutableArray3
<
K
>
{
final
int
index
;
private
final
int
index
;
final
ImmutableArray3
<
K
>
base
;
private
final
ImmutableArray3
<
K
>
base
;
final
K
obj
;
private
final
K
obj
;
Set
(
ImmutableArray3
<
K
>
base
,
int
index
,
K
obj
)
{
Set
(
ImmutableArray3
<
K
>
base
,
int
index
,
K
obj
)
{
this
.
base
=
base
;
this
.
base
=
base
;
...
@@ -303,9 +334,9 @@ public abstract class ImmutableArray3<K> implements Iterable<K> {
...
@@ -303,9 +334,9 @@ public abstract class ImmutableArray3<K> implements Iterable<K> {
*/
*/
static
class
Insert
<
K
>
extends
ImmutableArray3
<
K
>
{
static
class
Insert
<
K
>
extends
ImmutableArray3
<
K
>
{
final
int
index
;
private
final
int
index
;
final
ImmutableArray3
<
K
>
base
;
private
final
ImmutableArray3
<
K
>
base
;
final
K
obj
;
private
final
K
obj
;
Insert
(
ImmutableArray3
<
K
>
base
,
int
index
,
K
obj
)
{
Insert
(
ImmutableArray3
<
K
>
base
,
int
index
,
K
obj
)
{
this
.
base
=
base
;
this
.
base
=
base
;
...
@@ -369,8 +400,8 @@ public abstract class ImmutableArray3<K> implements Iterable<K> {
...
@@ -369,8 +400,8 @@ public abstract class ImmutableArray3<K> implements Iterable<K> {
*/
*/
static
class
Remove
<
K
>
extends
ImmutableArray3
<
K
>
{
static
class
Remove
<
K
>
extends
ImmutableArray3
<
K
>
{
final
int
index
;
private
final
int
index
;
final
ImmutableArray3
<
K
>
base
;
private
final
ImmutableArray3
<
K
>
base
;
Remove
(
ImmutableArray3
<
K
>
base
,
int
index
)
{
Remove
(
ImmutableArray3
<
K
>
base
,
int
index
)
{
this
.
base
=
base
;
this
.
base
=
base
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论