Skip to content

Correctly classify rejected posts #575

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 1 commit into from
Sep 21, 2016
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
8 changes: 4 additions & 4 deletions _includes/toc.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<div id="scroller-anchor">
<div id="scroller">
<p class="contents">Contents</p>
<div id="toc"></div>
{% if page.vote-status %}
{% if page.vote-status == 'accepted' %}
<p class="contents">SIP Committee Decision</p>
Expand All @@ -21,13 +19,15 @@
<strong style="font-size: 15px;">Postponed To A Future Release</strong>
<p style="padding-top: 10px">{{ page.vote-text }}</p>
</div>
{% elsif page.vote-status == 'not accepted' %}
{% elsif page.vote-status == 'rejected' %}
<p class="contents">SIP Committee Decision</p>
<div class="alert-message danger" style="margin-left: 15px;">
<strong style="font-size: 15px;">Not Accepted</strong>
<strong style="font-size: 15px;">Rejected</strong>
<p style="padding-top: 10px">{{ page.vote-text }}</p>
</div>
{% endif %}
{% endif %}
<p class="contents">Contents</p>
<div id="toc"></div>
</div>
</div>
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
---
layout: sip
disqus: true
title: SIP-12 Uncluttering Scala’s syntax for control structures.
title: SIP-12 - Uncluttering Scala’s syntax for control structures.

vote-status: postponed
vote-text: This SIP is in Postponed status currently, with the current action for 2.10. (1) Deprecate "then" in identifiers to reserve for future keyword status. (2) Deprecate problematic "while() do" syntax. ("do" loops in while loops require braces).
vote-status: rejected
vote-text: The committee votes unanimously to reject the change. The conclusion is that there is not a clear benefit for it and the required invested time and efforts would be too high. For more explanation, read the <a href=../minutes/sip-10th-august-minutes.html>minutes</a>.
---

**By: Martin Odersky**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
layout: sip
title: SIP-16 - Self-cleaning Macros

vote-status: postponed
vote-text: This is in Postponed status, but experimental implementation is expected for 2.10. Additionally the use of macro identifiers will be deprecated in 2.10.
vote-status: rejected
vote-text: The proposal is rejected unanimously because Scala Meta, the successor metaprogramming tool, is coming soon. For more explanation, read the <a href=../minutes/sip-10th-august-minutes.html>minutes</a>.
---


Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
layout: sip
disqus: true
title: SIP-19 Implicit Source Locations
title: SIP-19 - Implicit Source Locations

vote-status: not accepted
vote-text: This is in Not Accepted status. We expect this to be easily implemented using macros without going through a full SIP.
vote-status: rejected
vote-text: The proposal is rejected. We expect this to be easily implemented using macros without going through a full SIP. A modern implementation can be found <a href="https://github.com/lihaoyi/sourcecode">here</a>.
---

**Philipp Haller**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
---
layout: sip
title: SIP 26 - Unsigned Integers
disqus: true
title: SIP-26 - Unsigned Integers

vote-status: rejected
vote-text: The committee votes to reject the proposal because of a 6% performance hit on the provided implementation by the authors.
---

__Sébastien Doeraene and Denys Shabalin__

__first submitted 9 November 2015__

**tl;dr**: We propose the addition of 4 "primitive" types to represent
**Summary**: We propose the addition of 4 "primitive" types to represent
unsigned integers: `UByte`, `UShort`, `UInt` and `ULong`.

A prototype implementation of this proposal, with unit tests and benchmarks,
can be found at
https://github.com/scala/scala/compare/2.12.x...sjrd:uints
can be found [here](https://github.com/scala/scala/compare/2.12.x...sjrd:uints).

## History

| Date | Version |
|--------------|---------------|
| Nov 9th 2015 | Initial Draft |

## Introduction/Motivation/Abstract
## Introduction - Motivation - Abstract

Scala was initially designed to target the JVM, and, as such, defines exactly
9 primitive types corresponding to the 9 primitive types of the JVM (including
Expand Down